-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "aor-embedded-array",
"version": "0.1.0",
"description": "Embeded Array Field/Input for Admin On Rest",
"main": "./lib/index.js",
"repository": "https://github.com/mhdsyrwan/aor-embedded-array.git",
"authors": [
"Muhammad Al-Seyrawan <[email protected]>"
],
"license": "MIT",
"scripts": {
"build": "make build",
"clean": "make clean",
"format": "make format",
"precommit": "lint-staged",
"prepublish": "make build",
"test": "make test",
"watch-test": "make watch-test"
},
"lint-staged": {
"*.js": [
"eslint --fix ./src",
"git add"
]
},
"devDependencies": {
"admin-on-rest": "~1.3.0",
"babel-cli": "~6.24.1",
"babel-core": "~6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-istanbul": "~4.1.3",
"babel-preset-es2015": "~6.24.1",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"enzyme": "~2.9.1",
"eslint": "~4.2.0",
"eslint-config-prettier": "~2.3.0",
"eslint-plugin-import": "~2.7.0",
"eslint-plugin-jsx-a11y": "~6.0.2",
"eslint-plugin-mocha": "~4.11.0",
"eslint-plugin-prettier": "~2.1.2",
"eslint-plugin-react": "~7.1.0",
"expect": "~1.20.2",
"husky": "~0.14.3",
"istanbul-cobertura-badger": "~1.3.0",
"lint-staged": "~4.0.1",
"mocha": "~3.4.2",
"nyc": "~11.0.3",
"prettier": "~1.5.2",
"react": "~15.6.1",
"react-addons-test-utils": "~15.6.0",
"react-dom": "~15.6.1"
},
"dependencies": {
"babel-plugin-transform-runtime": "~6.23.0",
"lodash.get": "~4.4.2",
"lodash.map": "^4.6.0",
"lodash.merge": "^4.6.1",
"prop-types": "~15.5.10"
},
"peerDependencies": {
"admin-on-rest": "~1.3"
}
}