-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "computed-async-mobx",
"version": "6.1.0",
"description": "Define a computed by returning a Promise",
"main": "built/src/index.js",
"typings": "built/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tape built/test/**/*Tests.js",
"coverage": "node fix-coverage.js && istanbul cover tape built/test/**/*Tests.js",
"all": "npm run build && npm run test && npm run coverage",
"prepublish": "npm run build && npm run test"
},
"keywords": [
"mobx",
"async",
"Promise",
"computed"
],
"author": "Daniel Earwicker <[email protected]>",
"license": "MIT",
"peerDependencies": {
"mobx": "^3.0.0 || ^4.0.0 || ^4.0.0-beta.2 || ^5.0.0",
"mobx-utils": "^3.0.0 || ^4.0.0 || ^4.0.0-beta.2 || ^5.0.0"
},
"devDependencies": {
"@types/blue-tape": "^0.1.31",
"@types/jsdom": "^11.0.2",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"blue-tape": "^1.0.0",
"coveralls": "^2.11.15",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"mobx-utils": "^5.4.1",
"ts-loader": "^2.3.3",
"typedoc": "^0.5.1",
"typescript": "^3.0.0",
"webpack": "^3.5.5",
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}