forked from cazzer/gulp-selectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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": "gulp-selectors",
"description": "Minify CSS selectors.",
"version": "0.1.10",
"author": {
"name": "Caleb Brewer",
"email": "calebthebrewer@gmail.com"
},
"dependencies": {
"event-stream": "~3.1.7",
"gulp-util": "~3.0.1",
"lodash": "~2.4.1",
"multimatch": "^1.0.1"
},
"homepage": "https://github.com/calebthebrewer/gulp-selectors",
"bugs": "https://github.com/calebthebrewer/gulp-selectors/issues",
"keywords": [
"gulp",
"gulpplugin",
"munch",
"minify",
"css",
"selectors",
"styles",
"compress"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/calebthebrewer/gulp-selectors.git"
},
"readmeFilename": "README.md",
"devDependencies": {
"vows": "~0.7.0",
"jscoverage": "~0.5.6",
"istanbul": "^0.3.2",
"codeclimate-test-reporter": "0.0.4",
"gulp": "~3.8.11"
},
"scripts": {
"test": "vows --spec",
"coverage": "istanbul cover ./node_modules/vows/bin/vows --spec",
"codeclimate": "cat ./coverage/lcov.info | codeclimate",
"test-report": "npm run coverage && npm run codeclimate"
}
}