-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1007 Bytes
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
{
"name": "ra-data-json-hal",
"version": "1.0.7",
"description": "Simple JSON+HAL Adapter for react-admin",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "babel src --out-dir lib",
"prepublish": "npm run test && npm run build"
},
"keywords": [
"react-admin",
"jsonhal",
"hal",
"ra-data"
],
"author": "Raul Ascencio",
"license": "MIT",
"dependencies": {
"query-string": "~5.1.1",
"react": "^16.3.2",
"react-admin": "^2.0.0-beta4",
"react-dom": "^16.3.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"fetch-mock": "^6.3.0",
"jest": "^22.4.3",
"whatwg-fetch": "^2.0.4"
}
}