-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 992 Bytes
/
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
{
"name": "css-extract",
"version": "2.0.0",
"description": "Extract CSS from a browserify bundle",
"main": "index.js",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard && npm run deps && NODE_ENV=test node test",
"test:cov": "standard && npm run deps && NODE_ENV=test nyc node test"
},
"repository": "stackcss/css-extract",
"keywords": [
"css",
"extract",
"browserify",
"plugin",
"transform",
"sheetify",
"css-modules"
],
"license": "MIT",
"dependencies": {
"bl": "^4.0.2",
"defined": "^1.0.0",
"from2-string": "^1.1.0",
"static-module": "^3.0.0",
"through2": "^4.0.2"
},
"devDependencies": {
"browserify": "^16.5.2",
"dependency-check": "^2.10.1",
"insert-css": "^2.0.0",
"nyc": "^15.1.0",
"sheetify": "^8.0.0",
"standard": "^14.3.4",
"tape": "^5.0.1",
"tmp": "^0.2.1"
},
"files": [
"index.js",
"bin/*"
]
}