-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
{
"name": "css-module-deps",
"version": "3.0.0",
"description": "walk the css dependency graph to generate a stream of json output",
"main": "index.js",
"scripts": {
"test": "npm run lint && tap test/*.js",
"lint": "eslint *.js 'lib/**/*.js' test/*.js bin/*.js",
"cov": "tap --cov test/*.js",
"coveralls": "COVERALLS_REPO_TOKEN=QSOIZ0cF9MztsL1IK89Xd4f12u99Y6iqp npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reducejs/css-module-deps.git"
},
"keywords": [
"css",
"module-deps",
"dependencies",
"dependency",
"graph",
"reduce-css"
],
"author": "zoubin",
"license": "MIT",
"engines": {
"node": ">=4.2.1"
},
"bugs": {
"url": "https://github.com/reducejs/css-module-deps/issues"
},
"homepage": "https://github.com/reducejs/css-module-deps#readme",
"dependencies": {
"custom-resolve": "^1.0.0",
"mixy": "^1.0.0",
"multimatch": "^2.1.0",
"node-promisify": "^1.0.0",
"postcss": "^5.0.10",
"through2": "^2.0.0"
},
"devDependencies": {
"JSONStream": "^1.0.6",
"concat-stream": "^1.5.1",
"eslint": "^2.1.0",
"postcss-advanced-variables": "^1.1.0",
"postcss-simple-import": "^3.0.0",
"postcss-custom-url": "^4.0.0",
"tap": "^5.0.0"
}
}