-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ra-data-hal",
"version": "2.7.1",
"description": "A HAL data provider for react-admin.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint -c .eslintrc src test --ext .js",
"lintFix": "eslint -c .eslintrc src test --ext .js --fix",
"format": "prettier --check 'src/**/*.js' 'test/**/*.js'",
"formatFix": "prettier --write 'src/**/*.js' 'test/**/*.js'",
"start": "babel -s inline -d lib -w src",
"build": "babel -s inline -d lib src",
"precommit": "npm run formatFix && npm run lintFix && npm run test && npm run build",
"prepublishOnly": "npm run format && npm run lint && npm run test && npm run build",
"test": "mocha --require babel-polyfill --require babel-core/register --recursive ./test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/b-social/ra-data-hal.git"
},
"keywords": [
"hal",
"react-admin",
"data",
"provider"
],
"author": "Toby Clemson",
"license": "MIT",
"bugs": {
"url": "https://github.com/b-social/ra-data-hal/issues"
},
"homepage": "https://github.com/b-social/ra-data-hal#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"halboy": "^0.8.6",
"inflection": "^1.12.0",
"qs": "^6.7.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-admin": "^2.9.1",
"react-dom": "^16.8.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"mocha": "^6.1.4",
"nock": "^12.0.3",
"prettier": "1.17.0"
}
}