-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.02 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
{
"name": "eslint-plugin-superstition",
"version": "0.3.1",
"description": "ESLint superstition rules (forbid using numbers 13, 666 and etc.)",
"license": "MIT",
"repository": "gurov/eslint-plugin-superstition",
"author": {
"name": "Pavel Gurov",
"email": "lucius.gu@gmail.com",
"url": "github.com/gurov"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "xo && nyc ava",
"update-md": "inject-in-tag ./rule-description.js readme.md"
},
"files": [
"index.js",
"rules"
],
"keywords": [
"eslint",
"plugin",
"eslint-plugin",
"eslintplugin",
"superstition"
],
"dependencies": {
"create-eslint-index": "^1.0.0",
"eslint-ast-utils": "^1.0.0",
"req-all": "^0.1.0"
},
"devDependencies": {
"ava": "^0.17.0",
"eslint-ava-rule-tester": "^0.1.1",
"inject-in-tag": "^1.1.1",
"nyc": "^6.4.4",
"pify": "^2.3.0",
"xo": "^0.15.1"
},
"peerDependencies": {
"eslint": ">=3"
},
"xo": {
"esnext": true,
"space": 2
}
}