forked from ahdinosaur/require-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "require-style",
"version": "1.0.1",
"description": "require modules that target css in electron or the browser",
"main": "index.js",
"scripts": {
"start": "node example",
"transform": "browserify -t ./transform example",
"test:deps": "dependency-check . transform && dependency-check . transform --extra --no-dev",
"test:lint": "standard",
"test:node": "NODE_ENV=test run-default tape test/*.js --",
"test:coverage": "NODE_ENV=test nyc npm run test:node",
"test:coverage:report": "nyc report --reporter=lcov npm run test:node",
"test": "npm-run-all -s test:node test:lint test:deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahdinosaur/require-style.git"
},
"keywords": [],
"author": "Mikey <[email protected]> (http://dinosaur.is)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ahdinosaur/require-style/issues"
},
"homepage": "https://github.com/ahdinosaur/require-style#readme",
"devDependencies": {
"browserify": "^14.4.0",
"dependency-check": "^2.7.0",
"font-awesome": "^4.7.0",
"npm-run-all": "^4.0.1",
"nyc": "^10.1.2",
"run-default": "^1.0.0",
"standard": "^8.6.0",
"tape": "^4.6.3"
},
"dependencies": {
"css-url-regex": "^1.1.0",
"from2-string": "^1.1.0",
"is-windows": "^1.0.1",
"pump": "^1.0.2",
"quote-stream": "^1.0.2",
"readable-stream": "^2.2.10",
"replacestream": "^4.0.2",
"resolve": "^1.3.3",
"slash": "^1.0.0",
"static-module": "^1.3.2",
"style-resolve": "^1.0.1",
"urify": "^2.1.0"
}
}