forked from cheton/browserify-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.47 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
58
59
60
61
{
"name": "browserify-css",
"version": "0.14.0",
"description": "A Browserify transform for bundling, rebasing, inlining, and minifying CSS files",
"main": "./index.js",
"browser": "./browser.js",
"scripts": {
"prepublish": "npm run build && npm test",
"build": "gulp",
"test": "tap test/*.js",
"coveralls": "tap test/*.js --coverage --coverage-report=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/cheton/browserify-css"
},
"keywords": [
"browser",
"browserify",
"browserify-transform",
"css",
"dom",
"minify",
"transform"
],
"author": {
"name": "Cheton Wu"
},
"license": "MIT",
"dependencies": {
"clean-css": "^4.1.5",
"concat-stream": "^1.6.0",
"css": "^2.2.1",
"find-node-modules": "^1.0.4",
"lodash": "^4.17.4",
"mime": "^1.3.6",
"strip-css-comments": "^3.0.0",
"through2": "2.0.x"
},
"devDependencies": {
"browserify": "^14.4.0",
"coveralls": "^2.13.1",
"del": "^3.0.0",
"exorcist": "^0.4.0",
"fs-extra": "^3.0.1",
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.4",
"gulp-util": "^3.0.8",
"jsdom": "^9.12.0",
"jshint": "^2.9.5",
"require-dir": "^0.3.2",
"run-sequence": "^2.0.0",
"tap": "^10.7.0",
"vinyl-source-stream": "^1.1.0",
"yargs": "^8.0.2"
},
"bugs": {
"url": "https://github.com/cheton/browserify-css/issues"
},
"homepage": "http://cheton.github.io/browserify-css/"
}