-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "react-odata",
"version": "11.0.0-1",
"author": "Sean Lynch <techniq35@gmail.com>",
"license": "MIT",
"repository": "techniq/react-odata",
"files": [
"dist"
],
"main": "dist/OData.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.1.0",
"node-fetch": "^2.3.0",
"odata-query": "^5.4.0",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-fetch-component": "^8.0.0-5",
"react-testing-library": "^3.1.7",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"odata-query": "^5.0.0",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-fetch-component": "^8.0.0-5"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean -s",
"build": "NODE_ENV=production babel src -d dist --ignore test.js",
"preversion": "npm run build"
}
}