forked from henvo/ra-jsonapi-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.37 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
47
48
49
50
{
"name": "ra-jsonapi-client",
"version": "0.10.0",
"description": "JSON API data provider for react-admin.",
"main": "build/index.js",
"scripts": {
"build": "babel ./src -d ./build",
"test": "mocha --require mock-local-storage --require @babel/register test/index.js",
"coverage": "nyc npm run test",
"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": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"mocha": "^9.1.1",
"mock-local-storage": "^1.1.7",
"nock": "^10.0.0",
"nyc": "^15.1.0"
},
"dependencies": {
"axios": "^0.21.1",
"deepmerge": "^2.1.1",
"qs": "^6.5.2"
}
}