-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.56 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
70
71
72
73
74
75
76
77
78
79
{
"name": "eslint-plugin-react-pug",
"version": "0.8.3",
"description": "Add supporting of pugjs with react",
"repository": "ezhlobo/eslint-plugin-react-pug",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"pug",
"pugjs",
"react",
"babel"
],
"author": "Eugene Zhlobo <[email protected]>",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js",
"lib"
],
"scripts": {
"lint": "eslint ./",
"test": "mocha 'tests/**/*.js'",
"mocha": "mocha"
},
"dependencies": {
"@babel/parser": "^7.4.5",
"@babel/traverse": "^7.4.5",
"common-prefix": "^1.1.0",
"eslint-plugin-react": "*",
"pug-lexer": "^4.1.0",
"pug-lint": "^2.5.0",
"pug-uses-variables": "^3.0.1"
},
"devDependencies": {
"eslint": "^4.19.1 || ^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.1.4"
},
"peerDependencies": {
"eslint-plugin-react": ">= 7"
},
"eslintConfig": {
"extends": [
"airbnb-base"
],
"env": {
"mocha": true
},
"rules": {
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxBOF": 0,
"maxEOF": 0
}
],
"no-undef": "error",
"padded-blocks": [
"error",
{
"blocks": "never",
"classes": "never",
"switches": "never"
}
],
"semi": [
"error",
"never"
],
"object-shorthand": "off",
"func-names": "off"
}
}
}