-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "stateshot",
"version": "1.3.5",
"main": "dist/stateshot.js",
"repository": "git@github.com:doodlewind/stateshot.git",
"author": "Yifeng Wang <i@ewind.us>",
"license": "MIT",
"scripts": {
"test:local": "jest --coverage",
"test": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"benchmark": "parcel benchmark/index.html",
"build:cjs": "rollup -c rollup.config.js",
"build:min": "MINIFY=true rollup -c rollup.config.js",
"build": "npm run build:cjs && npm run build:min",
"lint": "standard"
},
"types": "./index.d.ts",
"files": [
"index.d.ts",
"*.md",
"src",
"dist"
],
"keywords": [
"stateshot",
"history",
"state",
"undo",
"redo",
"snapshot",
"json",
"data",
"state management"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^2.0.1",
"standard": "^12.0.1",
"uglify-es": "^3.3.9"
}
}