-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.13 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
{
"name": "@marco-eckstein/dependency-analysis",
"version": "0.1.0",
"description": "Tools that supplements the dependency analysis tool madge. So far, there is one tool which allows you to collapse dependencies.",
"main": "target/src/index.js",
"bin": "target/src/cli/dependency-analysis.js",
"types": "target/src/index.d.ts",
"scripts": {
"_clean": "rimraf target",
"_compile": "tsc",
"_compile:watch": "tsc --watch",
"_lint": "tslint src/**/*.ts",
"_lint:watch": "chokidar src/**/*.ts --command \"npm run _lint\" --throttle 2000",
"_test": "jasmine target/src/main/**/*.js --helper=target/src/test/helper.js --stop-on-failure=",
"_test:watch": "chokidar target/src/main/**/*.js --command \"npm run _test\" --throttle 2000",
"pretest": "npm run _clean && npm run _compile && npm run _lint",
"test": "npm run _test",
"prepack": "npm test",
"start": "npm test && concurrently \"npm run _compile:watch\" \"npm run _lint:watch\" \"npm run _test:watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/marco-eckstein/dependency-analysis.git"
},
"keywords": [
"dependency analysis",
"dependency graph",
"dependencies",
"madge"
],
"author": "Marco Eckstein <marco.eckstein@gmx.de>",
"contributors": [
"Marco Eckstein <marco.eckstein@gmx.de>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marco-eckstein/dependency-analysis/issues"
},
"homepage": "https://github.com/marco-eckstein/dependency-analysis#readme.md",
"dependencies": {
"commander": "^4.1.1",
"core-js": "^3.6.5",
"get-stdin": "^7.0.0",
"source-map-support": "^0.5.16"
},
"_comment": "Depend on @types/node, because a library is using it and we need a specific version to prevent a bug. See: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/15104",
"devDependencies": {
"@types/jasmine": "^3.5.10",
"@types/node": "^13.13.0",
"@types/source-map-support": "^0.5.1",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.1.0",
"jasmine": "^3.5.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}