-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 951 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "dva-model-extend",
"version": "0.1.2",
"description": "Utility method to extend dva model.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepublish": "babel src --out-dir lib",
"test": "npm run prepublish && mocha"
},
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvajs/dva-model-extend.git"
},
"keywords": [
"dva",
"model",
"extend"
],
"author": "Benjy Cui",
"license": "MIT",
"bugs": {
"url": "https://github.com/dvajs/dva-model-extend/issues"
},
"homepage": "https://github.com/dvajs/dva-model-extend#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.1.18",
"mocha": "^3.2.0"
},
"dependencies": {
"babel-runtime": "^6.20.0"
}
}