forked from sverweij/dependency-cruiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.8 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "dependency-cruiser",
"version": "3.1.1",
"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": {
"depcruise": "node ./bin/dependency-cruise --validate .dependency-cruiser-custom.json src bin/dependency-cruise test",
"depcruise:graph": "node ./bin/dependency-cruise --exclude \"(^node_modules|^fs$|^path$)\" --output-type dot --validate .dependency-cruiser-custom.json bin/dependency-cruise | dot -T svg > tmp_deps.svg",
"lint": "eslint bin/dependency-cruise src test",
"lint:types": "tslint types/dependency-cruiser.d.ts",
"lint:fix": "eslint --fix bin/dependency-cruise src test",
"nsp": "nsp check",
"npm-check-updates": "ncu --upgrade",
"postversion": "git push && git push --tags",
"preversion": "test `git branch | grep \"^* [a-zA-Z]\" | cut -c 3-` = 'master'",
"test": "mocha --bail --reporter dot test/*/*.spec.js test/*/*/*.spec.js test/*/*/*/*.spec.js",
"test:cover": "nyc --check-coverage npm test",
"test:cover:report": "nyc report --reporter=html",
"test:long": "mocha test/*/*.spec.js test/*/*/*.spec.js test/*/*/*/*.spec.js",
"test:watch": "mocha --watch --watch-extensions=json --reporter=min test/*/*.spec.js test/*/*/*.spec.js test/*/*/*/*.spec.js",
"test:glob": "set -f && test \"`bin/dependency-cruise test/extract/fixtures/gather-globbing/packages/**/src/**/*.js | grep \"no dependency violations found\"`\" = \"✔ no dependency violations found (6 modules cruised)\""
},
"keywords": [
"static analysis",
"circular",
"dependencies",
"typescript",
"javascript",
"coffeescript",
"ES6",
"ES2015",
"AMD",
"CommonJS",
"validation"
],
"author": {
"name": "Sander Verweij",
"url": "https://sverweij.github.io"
},
"contributors": [
{
"name": "Klaus Meinhardt",
"url": "https://github.com/ajafff"
}
],
"license": "MIT",
"devDependencies": {
"chai": "4.1.2",
"chai-json-schema": "1.5.0",
"coffeescript": "2.3.0",
"eslint": "4.19.1",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-mocha": "5.0.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-security": "1.4.0",
"intercept-stdout": "0.1.2",
"js-makedepend": "2.4.10",
"mocha": "5.1.1",
"normalize-newline": "3.0.0",
"npm-check-updates": "2.14.2",
"nsp": "3.2.1",
"nyc": "11.7.2",
"symlink-dir": "1.1.2",
"tslint": "5.10.0",
"typescript": "2.8.3"
},
"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": "5.5.3",
"ajv": "6.5.0",
"chalk": "2.4.1",
"commander": "2.15.1",
"figures": "2.0.0",
"glob": "7.1.2",
"handlebars": "4.0.11",
"lodash": "4.17.10",
"resolve": "1.7.1",
"safe-regex": "1.1.0",
"semver": "5.5.0",
"semver-try-require": "1.1.1"
},
"nyc": {
"statements": 99.85,
"branches": 98.78,
"functions": 100,
"lines": 99.84,
"exclude": [
"test/**/*",
"src/report/**/*.template.js",
"coverage/**/*",
"tmp*",
"docs/**/*"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"engines": {
"node": ">=6"
},
"types": "types/dependency-cruiser.d.ts",
"supportedTranspilers": {
"coffee-script": ">=1.0.0 <2.0.0",
"coffeescript": ">=1.0.0 <3.0.0",
"livescript": ">=1.0.0 <2.0.0",
"typescript": ">=2.0.0 <3.0.0"
}
}