forked from henvo/ra-jsonapi-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "ra-jsonapi-client",
"version": "0.5.0",
"description": "JSON API data provider for react-admin.",
"main": "build/index.js",
"scripts": {
"build": "babel ./src -d ./build",
"test": "nyc mocha --require babel-core/register --require mock-local-storage",
"lint": "eslint ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henvo/ra-jsonapi-client.git"
},
"keywords": [
"react-admin",
"jsonapi",
"npm"
],
"author": "Henning Vogt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/henvo/ra-jsonapi-client/issues"
},
"homepage": "https://github.com/henvo/ra-jsonapi-client#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"mock-local-storage": "^1.1.7",
"nock": "^10.0.0",
"nyc": "^13.0.1"
},
"dependencies": {
"axios": "^0.19.0",
"deepmerge": "^2.1.1",
"qs": "^6.5.2"
}
}