forked from sverweij/dependency-cruiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "dependency-cruiser",
"version": "1.15.4",
"description": "Validate and visualize dependencies. With your rules. JavaScript, TypeScript, CoffeeScript. ES6, CommonJS, AMD.",
"bin": {
"dependency-cruiser": "bin/dependency-cruise",
"dependency-cruise": "bin/dependency-cruise",
"depcruise": "bin/dependency-cruise"
},
"main": "src/main/index.js",
"scripts": {
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- test/*/*.spec.js test/*/*/*.spec.js",
"lint": "eslint bin src test",
"nsp": "nsp check",
"npm-check-updates": "ncu --upgrade",
"test": "mocha --bail -R dot test/*/*.spec.js test/*/*/*.spec.js",
"test-long": "mocha --bail test/*/*.spec.js test/*/*/*.spec.js",
"watch": "mocha --watch --watch-extensions=json --reporter=min test/*/*.spec.js"
},
"keywords": [
"javascript",
"typescript",
"coffeescript",
"dependencies",
"ES6",
"ES2015",
"AMD",
"CommonJS",
"validation",
"static analysis"
],
"author": "Sander Verweij",
"license": "MIT",
"devDependencies": {
"chai": "3.5.0",
"chai-json-schema": "1.4.0",
"eslint": "3.15.0",
"eslint-plugin-security": "1.2.0",
"intercept-stdout": "0.1.2",
"istanbul": "0.4.5",
"js-makedepend": "2.2.0",
"mocha": "3.2.0",
"npm-check-updates": "2.8.10",
"nsp": "2.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sverweij/dependency-cruiser"
},
"bugs": {
"url": "https://github.com/sverweij/dependency-cruiser/issues"
},
"homepage": "https://github.com/sverweij/dependency-cruiser",
"dependencies": {
"acorn": "4.0.8",
"ajv": "4.11.2",
"chalk": "1.1.3",
"coffee-script": "1.12.3",
"commander": "2.9.0",
"figures": "2.0.0",
"handlebars": "4.0.6",
"lodash": "4.17.4",
"resolve": "1.2.0",
"safe-regex": "1.1.0",
"semver": "5.3.0",
"typescript": "2.1.5"
},
"engines": {
"node": ">=4"
},
"supportedTranspilers": {
"coffee-script": ">=1.0.0 <2.0.0",
"livescript": ">=1.0.0 <2.0.0",
"typescript": ">=2.0.0 <3.0.0"
}
}