-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "cssify",
"version": "1.0.3",
"description": "A simple Browserify transform for adding required styles to the browser.",
"main": "./lib/index.js",
"scripts": {
"pretest": "standard",
"test:browser": "browserify -t [ . --no-auto-inject ] -t browserify-istanbul test/browser | browser-run | node test/extract-coverage.js | tap-difflet",
"test:node": "istanbul cover --report json --print none ./node_modules/.bin/tape 'test/**/*.spec.js' | tap-difflet",
"test": "mkdir -p coverage && npm run test:node && npm run test:browser && istanbul report"
},
"repository": "https://github.com/davidguttman/cssify",
"keywords": [
"browserify",
"css",
"transform",
"browserify-transform",
"dom",
"browser"
],
"browserify": "./lib/browser.js",
"author": "David Guttman",
"license": "BSD",
"engines": {
"node": ">= 0.12.0"
},
"dependencies": {
"css-modules-loader-core": "^1.0.0",
"lodash.assign": "^3.2.0",
"resolve": "^1.1.6",
"string-hash": "^1.1.0",
"stringify-object": "^2.3.1",
"through2": "^2.0.0"
},
"devDependencies": {
"browser-run": "^3.0.3",
"browserify": "^12.0.1",
"browserify-istanbul": "^0.2.1",
"concat-stream": "^1.5.1",
"istanbul": "^0.4.0",
"standard": "^5.3.1",
"tap-difflet": "^0.4.0",
"tape": "^4.2.2",
"tape-catch": "^1.0.4"
}
}