forked from techniq/react-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "podata-react",
"version": "11.0.0-1",
"author": "Christopher Harris <[email protected]>",
"license": "MIT",
"repository": "cruxinator/POData-React",
"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",
"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": {
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-fetch-component": "^8.0.0-5"
},
"scripts": {
"test": "node node_modules/jest/bin/jest.js",
"test-watch": "node node_modules/jest/bin/jest.js --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean -s",
"build": "NODE_ENV=production babel src -d dist --ignore test.js",
"preversion": "npm run build"
},
"dependencies": {
"odata-query-builder": "0.0.7"
}
}