-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "csslint-cli",
"version": "1.0.5",
"main": "build/csslint-cli.js",
"description": "Nodejs CLI tool for csslint",
"preferGlobal": true,
"homepage": "https://github.com/dmi3y/csslint-cli",
"bugs": "https://github.com/dmi3y/csslint-cli/issues",
"author": {
"name": "Dmitry",
"email": "[email protected]"
},
"bin": {
"csslint-cli": "./bin/csslint-cli"
},
"repository": {
"type": "git",
"url": "https://github.com/dmi3y/csslint-cli"
},
"licenses": [
{
"type": "MIT"
}
],
"files": [
""
],
"keywords": [],
"devDependencies": {
"grunt-cli": "^1.2.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-jshint": "~0.7.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.5.0",
"istanbul": "~0.2.10",
"jshint-stylish": "~0.1.3",
"load-grunt-tasks": "~0.2.0",
"time-grunt": "~0.2.0"
},
"dependencies": {
"chalk": "~0.4.0",
"csslint": "^1.0.5",
"grunt": "~0.4.0",
"lodash": "~2.4.1",
"minimist": "0.0.8",
"nfsu": "0.0.1",
"strip-json-comments": "~0.1.2"
},
"scripts": {
"lint": "grunt jshint",
"test": "grunt test",
"develop": "grunt watch",
"build": "grunt"
}
}