-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "css2modernizr",
"description": "Creates a Modernizr config file that requires only the tests that your CSS uses.",
"version": "0.1.0",
"homepage": "https://github.com/vovanbo/css2modernizr",
"bugs": "https://github.com/vovanbo/css2modernizr/issues",
"license": "MIT",
"main": "lib/css2modernizr.js",
"bin": {
"css2modernizr": "./bin/css2modernizr"
},
"author": {
"name": "Vladimir Bolshakov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vovanbo/css2modernizr"
},
"keywords": [
"css",
"Modernizr"
],
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^0.6.2",
"lodash": "^3.10.1",
"postcss": "^5.0.12"
},
"devDependencies": {
"gulp": "^3.8.5",
"gulp-util": "2.2.19",
"gulp-bump": "^0.1.8",
"gulp-jscs": "^0.6.0",
"gulp-jshint": "^1.5.5",
"gulp-mocha": "^0.5.0",
"gulp-istanbul": "^0.2.0",
"coveralls": "^2.10.0",
"should": "^3.3.1",
"jshint-stylish": "^0.3.0",
"gulp-load-plugins": "^0.5.1",
"gulp-plumber": "^0.6.2"
},
"scripts": {
"coveralls": "gulp test && cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "gulp test"
}
}