-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·66 lines (66 loc) · 1.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "easy-undo",
"version": "1.0.0",
"description": "A simple JavaScript undo/redo interface; for easy management of 'state' histories in an application",
"main": "./build/easy-undo.js",
"scripts": {
"build": "babel src --ignore tests/ -d build",
"lint": "node_modules/.bin/eslint ./src/easy-undo.js",
"test": "jest",
"clear:build": "rimraf build",
"clear:docs": "rimraf docs",
"generate:docs": "npm run clear:docs && esdoc",
"serve:docs": "npm run generate:docs && cd docs && serve",
"clear": "npm run clear:docs && npm run clear:build",
"prepublish": "npm run clear && npm run build"
},
"babel": {
"presets": [
"latest"
],
"plugins": [
"transform-class-properties",
"remove-comments"
]
},
"jest": {
"transform": {
".js": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/fatman-/easy-undo.git"
},
"keywords": [
"undo",
"redo",
"history"
],
"author": "Sai Kishore Komanduri",
"contributors": [
{
"name": "Matthias Jouan",
"url": "https://github.com/mattjmattj"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fatman-/easy-undo/issues"
},
"homepage": "https://github.com/fatman-/easy-undo",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"esdoc": "^1.0.1",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.2.0",
"jest": "^20.0.4",
"rimraf": "^2.6.1"
}
}