-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "mobx-ajax-util",
"version": "1.1.0",
"description": "A mobx util for handling ajax request.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Iron<lrironsora@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tuia-fed/mobx-ajax-util"
},
"dependencies": {},
"scripts": {
"build": "rollup -c rollup.config.js",
"start": "parcel demo/index.html",
"prepublish": "npm run build",
"pretest": "tsc",
"test": "mocha",
"coverage": "nyc npm test && nyc report --reporter=json"
},
"devDependencies": {
"query-string": "^6.3.0",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.4.0",
"@types/assert": "^1.4.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/query-string": "^6.2.0",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"@types/sinon": "^7.0.11",
"axios": "^0.18.0",
"babel-preset-env": "^1.7.0",
"babel-preset-mobx": "^2.0.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.3.0",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"parcel-bundler": "^1.11.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rollup": "^1.9.0",
"rollup-plugin-typescript2": "^0.19.3",
"sinon": "^7.3.1",
"source-map-support": "^0.5.11",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"mobx": ">=5"
}
}