-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.38 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
{
"name": "@sequencework/eslint-config",
"version": "0.0.9",
"main": "index.js",
"license": "MIT",
"description": "Eslint config and init script",
"keywords": [
"eslint",
"eslint-config"
],
"bin": {
"sequence-lint-init": "bin/init.js"
},
"files": [
"index.js",
"react.js",
"lib",
"init-configs",
"bin"
],
"peerDependencies": {
"eslint": ">=5"
},
"dependencies": {
"babel-eslint": "8.2.6",
"chalk": "^2.4.1",
"eslint-config-prettier": "3.0.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.0",
"eslint-plugin-standard": "3.1.0",
"prettier": "1.14.2"
},
"scripts": {
"prettier": "prettier --write '**/*.{js,json,css,md}' --ignore-path .gitignore",
"lint": "eslint '**/*.js' --ignore-path .gitignore"
},
"devDependencies": {
"eslint": "5.4.0",
"husky": "1.0.0-rc.13",
"lint-staged": "7.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"semi": false
},
"eslintConfig": {
"extends": "./index.js"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
}