-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.39 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
56
57
{
"name": "gulp-csslint",
"version": "1.0.1",
"description": "CSSLint plugin for gulp",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"csslint": "^1.0.2",
"fancy-log": "^1.3.2",
"plugin-error": "^1.0.1",
"rcloader": "^0.2.1",
"through2": "^2.0.1",
"vinyl": "^2.1.0"
},
"devDependencies": {
"coveralls": "^2.11.12",
"csslint-stylish": "0.0.4",
"eslint": "^3.2.2",
"eslint-config-semistandard": "^7.0.0-beta.0",
"eslint-config-standard": "^6.0.0-beta.2",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.2",
"node-version-check": "^2.1.0",
"nyc": "^7.1.0",
"rimraf": "^2.5.4",
"should": "^11.0.0",
"sinon": "^1.17.5"
},
"scripts": {
"clean": "rimraf coverage/ .nyc_output/",
"cover": "nyc mocha",
"postcover": "nyc report --reporter lcov",
"lint": "node-version-gte-4 && eslint index.js test/main.js || node-version-lt-4",
"precover": "npm run lint && npm run clean",
"pretest": "npm run lint",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/lazd/gulp-csslint.git"
},
"keywords": [
"csslint",
"gulpplugin"
],
"author": "Larry Davis <lazdnet@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lazd/gulp-csslint/issues"
},
"engines": {
"node": ">=0.10"
}
}