forked from capaj/react-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
64
65
66
67
68
69
{
"name": "react-promise",
"version": "2.0.0",
"description":
"a react.js component for declarative way of handling promises",
"main": "./dist/react-promise.cjs.js",
"types": "./src/async.d.ts",
"module": "./dist/react-promise.es.js",
"jspm": {
"format": "esm"
},
"scripts": {
"test": "jest",
"pretest": "node_modules/.bin/standard --fix",
"showcase": "cd showcase && npx webpack-dev-server",
"precommit": "npm test",
"build": "BABEL_ENV=rollup rollup -c",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capaj/react-async.git"
},
"files": ["dist", "src"],
"keywords": ["react", "promise", "q", "declarative"],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/capaj/react-async/issues"
},
"homepage": "https://github.com/capaj/react-async#readme",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"mocha": "^3.5.3",
"raf": "^3.3.2",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"standard": "^10.0.3",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"jest": {
"setupFiles": ["raf/polyfill"],
"roots": ["src"]
}
}