This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.89 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
{
"name": "eslint-config-i-am-meticulous",
"version": "12.0.0",
"description": "An ESLint shareable config for meticulous people.",
"keywords": [
"eslint",
"eslint-config"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/MoOx/eslint-config-i-am-meticulous.git",
"#repositories": "https://github.com/npm/npm/issues/11315",
"repositories": [
"https://github.com/MoOx/eslint-config-i-am-meticulous.git",
"https://gitlab.com/MoOx/eslint-config-i-am-meticulous.git",
"https://bitbucket.org/MoOx/eslint-config-i-am-meticulous.git"
],
"main": "index.js",
"files": [
"index.js",
"react.js",
"flow.js",
"react-flow.js",
"react-native.js",
"es5.js"
],
"dependencies": {
"eslint-plugin-import": "^2.20.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^4.2.3",
"npm-run-all": "^4.1.5",
"npmpub": "^5.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"prettier": {
"trailingComma": "all",
"proseWrap": "always"
},
"scripts": {
"precommit": "pretty-quick --staged",
"lint:config": "eslint -c index.js \"*.js\"",
"lint:index": "eslint -c index.js __tests__/index.js",
"lint:react": "eslint -c react.js __tests__/react-fn.js __tests__/react-class.js",
"lint:react-native": "eslint -c react-native.js __tests__/react-fn.js __tests__/react-class.js",
"lint:flow": "eslint -c flow.js __tests__/flow.js interfaces/Something.d.js",
"lint:react-flow": "eslint -c react-flow.js __tests__/react-class-flow.js",
"lint": "npm-run-all --parallel lint:*",
"test": "npm run -s lint",
"release": "npmpub",
"format": "prettier --write --trailing-comma=all \"*.js\" \"!(node_modules)/*.js\""
}
}