-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "dva-subscribe",
"version": "0.2.1",
"description": "A helper function to simplify the subscription of history in dva. ",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"test": "cross-env NODE_ENV=test nyc mocha test/*.spec.js",
"report": "cross-env NODE_ENV=test nyc --reporter=html mocha test/*.spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ma63d/dva-subscribe.git"
},
"keywords": [
"dva",
"history",
"subscription"
],
"author": "Chuck Liu <[email protected], chuckliu.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ma63d/dva-subscribe/issues"
},
"homepage": "https://github.com/Ma63d/dva-subscribe#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"chai-spies": "git://github.com/chaijs/chai-spies.git#master",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-standard": "^3.0.1",
"history": "^4.6.3",
"jsdom": "^11.1.0",
"mocha": "^3.4.2",
"mocha-jsdom": "^1.1.0",
"nyc": "^11.0.3",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"path-to-regexp": "^1.7.0"
},
"peerDependencies": {
"dva": "^1.0.0"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}