-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "style-deps",
"version": "2.0.1",
"description": "Traverse the dependency graph of a CSS project using npm-style import statements",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"deps:pkg": "ncu",
"deps:update": "ncu -a",
"test": "standard && npm run deps && faucet test/index.js",
"test:cov": "standard && npm run deps && NODE_ENV=test istanbul cover test/index.js",
"format": "standard --format"
},
"repository": "sheetify/style-deps",
"keywords": [
"parse",
"traverse",
"dependencies",
"compile",
"tool",
"sourcemap"
],
"license": "MIT",
"dependencies": {
"ast-pipeline": "^0.1.0",
"bl": "^1.0.0",
"convert-source-map": "^1.1.1",
"css": "^2.2.1",
"duplexer2": "^0.0.2",
"findup": "^0.1.5",
"flatten": "^0.0.1",
"graceful-fs": "^4.1.2",
"map-async": "^0.1.1",
"new-from": "^0.0.3",
"noop2": "^2.0.0",
"resolve": "^1.1.6",
"shallow-copy": "^0.0.1",
"style-resolve": "^0.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"dependency-check": "^2.5.0",
"istanbul": "^0.3.19",
"npm-check-updates": "^2.2.0",
"rework": "^1.0.1",
"rework-variables": "^0.0.8",
"standard": "^5.2.2",
"tape": "^4.2.0",
"through": "^2.3.8"
}
}