-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "react-fetch-component",
"version": "8.0.0-13",
"author": "Sean Lynch <[email protected]>",
"license": "MIT",
"repository": "techniq/react-fetch-component",
"files": [
"dist",
"index.d.ts"
],
"main": "dist/index.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"fetch-mock": "^6.4.4",
"jest": "^23.0.1",
"node-fetch": "^2.3.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-testing-library": "^3.1.7"
},
"peerDependencies": {
"react": "^16.8.0"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "NODE_ENV=production babel src -d dist --ignore test.js",
"preversion": "npm run build"
},
"jest": {
"setupFiles": [
"<rootDir>/config/testSetup.js"
]
},
"prettier": {
"singleQuote": true
},
"dependencies": {},
"typings": "index.d.ts"
}