-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 loc) · 951 Bytes
/
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
{
"name": "eslint-plugin-rulesdir",
"version": "0.2.3",
"description": "Allows a local ESLint rules directory to be used without a command-line flag",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Teddy Katz",
"scripts": {
"test": "npm run lint-single-rulesdir && npm run lint-multiple-rulesdir",
"lint-single-rulesdir": "eslint --config .eslintrc-single-rulesdir.js *.js **/*.js",
"lint-multiple-rulesdir": "eslint --config .eslintrc-multiple-rulesdir.js *.js **/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint-community/eslint-plugin-rulesdir"
},
"funding": "https://opencollective.com/eslint",
"devDependencies": {
"eslint": ">=3.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.1"
},
"peerDependencies": {
"eslint": ">=3.0.0"
},
"engines": {
"node": ">=4.0.0"
}
}