-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.02 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.02 KB
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": "neutrino-preset-eslint-react",
"version": "1.0.2",
"description": "Neutrino preset for react project adding xo's base JS ESLint config, following the xo styleguide",
"repository": {
"url": "zcong1993/neutrino-preset-eslint-react",
"type": "git"
},
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"neutrino",
"neutrino-preset",
"xo",
"react",
"eslint"
],
"scripts": {
"test": "jest && npm run lint",
"lint": "xo"
},
"author": "zcong1993 <1005997919@qq.com>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"deepmerge": "^1.4.4",
"eslint-config-xo": "^0.18.2",
"eslint-config-xo-react": "^0.12.0",
"neutrino-middleware-eslint": "^6.1.4"
},
"devDependencies": {
"eslint-config-rem": "^3.0.0",
"jest-cli": "^19.0.0",
"neutrino": "^6.1.4",
"xo": "^0.18.0"
},
"peerDependencies": {
"neutrino": "^6.0.0"
},
"xo": {
"extends": "rem",
"envs": [
"jest"
]
}
}