-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "state-db.js",
"version": "0.2.2",
"description": "state management",
"main": "build/bundle.js",
"module": "build/bundle.esm.js",
"scripts": {
"test": "jest --coverage",
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"devtool": "rollup -c rollup.config.devtool.js -w",
"start": "serve public"
},
"author": "xieyu33333",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-uglify": "^6.0.0"
}
}