-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
32 lines (32 loc) · 1004 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
{
"name": "wechat-weapp-redux",
"version": "0.1.3",
"description": "Wechat weapp redux bindings",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build:lib": "babel src --out-dir lib",
"build:umd": "NODE_ENV=development webpack src/index.js dist/wechat-weapp-redux.js",
"build:umd:min": "NODE_ENV=production webpack src/index.js dist/wechat-weapp-redux.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run clean && npm run build"
},
"author": "",
"license": "MIT",
"files": [
"dist",
"lib",
"src"
],
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"rimraf": "^2.5.4",
"webpack": "^1.13.2"
}
}