-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "react-fetches",
"version": "1.0.3",
"description": "A new way to perform fetch requests with react.",
"main": "./lib/module.js",
"scripts": {
"test": "BABEL_ENV=test jest --config .jestrc.json",
"build": "NODE_ENV=rollup rollup -c",
"eslint": "eslint src tests",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dleitee/fetches.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/dleitee/fetches/issues"
},
"homepage": "https://github.com/dleitee/fetches#readme",
"author": "Daniel Leite de Oliveira <[email protected]> (https://github.com/dleitee)",
"dependencies": {
"fetches": "^0.2.0",
"lodash.frompairs": "^4.0.1",
"p-is-promise": "^1.1.0",
"prop-types": "^15.6.1",
"react": "16.5.1",
"react-dom": "^16.4.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"dom-testing-library": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-cheesecakelabs": "^2.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"form-data": "^2.3.2",
"jest": "^23.1.0",
"lodash.get": "^4.4.2",
"nock": "^10.0.0",
"node-fetch": "^2.1.2",
"react-testing-library": "5.0.1",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0"
}
}