-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "react-pledge",
"version": "0.1.1",
"description": "Declarative way to track promise states",
"main": "index.js",
"module": "es/index.js",
"files": ["es", "index.js", "umd"],
"scripts": {
"build": "node build/build.js",
"test": "jest"
},
"peerDependencies": {
"react": "15.x || 16.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6",
"babel-eslint": "^7.2.3",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"gzip-size": "^4.1.0",
"jest": "^22.4.3",
"prettier": "^1.10.2",
"pretty-bytes": "^4.0.2",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"author": "Peter Gombos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/petergombos/react-pledge.git"
},
"keywords": ["react", "promise"],
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setupTests.js"
}
}