forked from CSSLint/csslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "csslint",
"version": "1.0.3",
"description": "CSSLint",
"author": "Nicole Sullivan",
"contributors": [
"Nicholas C. Zakas"
],
"homepage": "http://csslint.net/",
"repository": {
"type": "git",
"url": "git+https://github.com/CSSLint/csslint.git"
},
"bugs": {
"url": "https://github.com/CSSLint/csslint/issues"
},
"license": "MIT",
"main": "./dist/csslint-node.js",
"bin": {
"csslint": "./dist/cli.js"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"clone": "~1.0.0",
"parserlib": "~1.0.0"
},
"devDependencies": {
"grunt": "~1.0.1",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-concat": "~1.0.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-include-replace": "~5.0.0",
"load-grunt-tasks": "~3.5.0",
"time-grunt": "~1.4.0",
"yuitest": "~0.7.9"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"dist/cli.js",
"dist/csslint-node.js",
"dist/csslint.js",
"CHANGELOG",
"LICENSE"
]
}