-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.1 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hoc-react-datgui",
"version": "0.0.5",
"description": "HOC adding a dat.GUI plugged to React.Component props",
"main": "build/index.js",
"author": "Benjamin Petetot <benjamin.petetot@zenika.com>",
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^3.2.4",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"scripts": {
"lint": "find src -iname \"*.jsx\" -exec eslint {} +; find src -iname \"*.js\" -exec eslint {} +;",
"build": "cross-env BABEL_ENV=cjs babel --ignore \"*.spec.js\" ./src/ --out-dir build",
"watch": "cross-env BABEL_ENV=cjs babel --ignore \"*.spec.js\" ./src/ --out-dir build --watch",
"test": "echo \"no tests\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zenika/hoc-react-datgui.git"
},
"bugs": {
"url": "https://github.com/Zenika/hoc-react-datgui/issues"
},
"homepage": "https://github.com/Zenika/hoc-react-datgui#readme",
"keywords": [
"react",
"datgui",
"hoc"
],
"babel": {
"presets": [
"es2017",
"es2015",
"react",
"stage-0"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"rules": {
"semi": [
2,
"never"
],
"arrow-body-style": 0,
"no-underscore-dangle": 0,
"import/no-named-as-default": 0,
"import/prefer-default-export": 0,
"import/no-unresolved": 0,
"react/forbid-prop-types": 0,
"no-unused-expressions": [
2,
{
"allowShortCircuit": true
}
]
}
},
"dependencies": {
"dat.gui": "dataarts/dat.gui",
"lodash": "^4.17.4"
}
}