forked from sindresorhus/grunt-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 794 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": "grunt-eslint",
"version": "19.0.0",
"description": "Validate files with ESLint",
"license": "MIT",
"repository": "sindresorhus/grunt-eslint",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "grunt"
},
"files": [
"tasks"
],
"keywords": [
"gruntplugin",
"lint",
"validate",
"report",
"jshint",
"jslint",
"ecmascript",
"esprima"
],
"dependencies": {
"chalk": "^1.0.0",
"eslint": "^3.0.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-shell": "^1.1.1"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"xo": {
"esnext": true
}
}