forked from jscs-dev/grunt-jscs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "grunt-jscs",
"description": "Grunt task for checking JavaScript Code Style with jscs.",
"version": "2.1.0",
"author": "Gustavo Henke <gustavo@injoin.com.br>",
"license": "MIT",
"homepage": "https://github.com/jscs-dev/grunt-jscs",
"repository": {
"type": "git",
"url": "https://github.com/jscs-dev/grunt-jscs.git"
},
"bugs": {
"url": "https://github.com/jscs-dev/grunt-jscs/issues"
},
"dependencies": {
"hooker": "~0.2.3",
"jscs": "~2.1.0",
"lodash": "~3.10.0",
"vow": "~0.4.1"
},
"devDependencies": {
"grunt-cli": "~0.1.13",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-nodeunit": "~0.4.0",
"load-grunt-tasks": "~3.2.0",
"time-grunt": "~1.2.1"
},
"keywords": [
"gruntplugin",
"jscs",
"code style",
"checker"
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test",
"bump": "npm version patch -m \"Release v%s\"",
"bump-minor": "npm version minor -m \"Release v%s\"",
"bump-major": "npm version major -m \"Release v%s\""
},
"files": [
"tasks",
"LICENSE-MIT"
]
}