-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "@novivia/linter",
"role": "linter",
"version": "1.10.1",
"engines": {
"node": ">=4",
"npm": ">=3"
},
"description": "ESlint rules for Novivia",
"authors": [
"Mathieu M-Gosselin <[email protected]>",
"Michaël Ferris <[email protected]>"
],
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "[email protected]:Novivia/tools.linter.git"
},
"bin": {
"novivia-linter": "./cliWrapper"
},
"main": "index.js",
"scripts": {
"build": "novivia-builder build",
"lint": "./cliWrapper lint .",
"pub": "novivia-builder publish",
"release": "novivia-builder release"
},
"novivia-builder": {
"babelPatterns": [
"cli.js",
"modifiers/**/*.js"
],
"packagePatterns": [
"cliWrapper",
"modifiers/**",
"rules/**"
]
},
"novivia-linter": {
"modifiers": {
"global": {
"react": false
}
}
},
"devDependencies": {
"@novivia/babel": "0.1.0",
"@novivia/build-module": "^0.5.1"
},
"dependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.12.2",
"eslint-myrules-manager": "^0.5.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-header": "^0.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-lean-imports": "^0.3.3",
"eslint-plugin-lodash": "^2.2.4",
"eslint-plugin-markdown": "^1.0.0-beta.3",
"eslint-plugin-new-with-error": "^1.1.0",
"eslint-plugin-node": "^3.0.5",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-security": "^1.2.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^5.0.4"
}
}