-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "eslint-plugin-alphabetize",
"version": "1.1.1",
"description": "Enforce that any arbitrary code block is alphabetized",
"main": "index.js",
"repository": "[email protected]:NickHeiner/eslint-plugin-alphabetize.git",
"author": "Nick Heiner <[email protected]>",
"keywords": [
"eslint",
"eslintplugin"
],
"scripts": {
"test": "yarn run lint && jest test.js",
"lint": "eslint --max-warnings 0 --cache index.js test.js",
"lint:fix": "yarn run lint --fix",
"comment": "I used this hack to make eslint recognize the locally installed plugin. I'm not sure if there's a better way.",
"set-up-demo": "yarn link && yarn link eslint-plugin-alphabetize",
"demo": "eslint samples"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"rules": {
"alphabetize/_": "error"
},
"extends": [
"nth"
],
"plugins": [
"alphabetize"
]
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@typescript-eslint/parser": "^2.9.0",
"dedent": "^0.7.0",
"eslint": "^6.7.1",
"eslint-config-nth": "^2.0.1",
"jest": "^24.9.0",
"typescript": "^3.7.2"
}
}