forked from gyandeeps/gruntify-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 908 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "gruntify-eslint",
"version": "1.3.1",
"description": "Validate files with ESLint",
"license": "MIT",
"repository": "https://github.com/gyandeeps/gruntify-eslint",
"bugs": {
"url": "https://github.com/gyandeeps/gruntify-eslint/issues"
},
"author": {
"name": "Gyandeep Singh",
"email": "[email protected]"
},
"dependencies": {
"eslint": ">=0.24.1 <=1.10.3"
},
"devDependencies": {
"shelljs": "~0.3.0"
},
"peerDependencies": {
"grunt": ">=0.4.5"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt",
"patch": "node Makefile.js patch",
"minor": "node Makefile.js minor",
"major": "node Makefile.js major"
},
"files": [
"tasks"
],
"keywords": [
"gruntplugin",
"lint",
"eslint",
"jshint",
"jslint",
"ecmascript",
"esprima",
"javascript",
"code quality"
]
}