-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.16 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
{
"name": "cognitive-complexity-ts",
"version": "0.6.5",
"description": "",
"keywords": [
"typescript",
"cognitive",
"complexity",
"metric"
],
"main": "./build/src/api.js",
"types": "./build/src/api.d.ts",
"scripts": {
"build": "tsc -i",
"build-tools": "tsc -i -p ./tools",
"build-ui": "npm run build && tsc -i -p ./ui",
"json": "npm run build && node -r source-map-support/register ./build/src/json",
"ui": "npm run build && npm run build-ui && DEV=true node -r source-map-support/register ./build/src/ui",
"test": "npm run build && node -r source-map-support/register ./build/test/main",
"what": "npm run build-tools && node -r source-map-support/register ./build/tools/what-is-it",
"prepublishOnly": "rm -rf ./build && npm run build && npm run build-ui && npm run test"
},
"bin": {
"ccts": "./bin/cognitive-complexity-ts",
"ccts-json": "./bin/cognitive-complexity-ts-json",
"ccts-ui": "./bin/cognitive-complexity-ts-ui",
"cognitive-complexity-ts": "./bin/cognitive-complexity-ts",
"cognitive-complexity-ts-json": "./bin/cognitive-complexity-ts-json",
"cognitive-complexity-ts-ui": "./bin/cognitive-complexity-ts-ui"
},
"files": [
"/bin",
"/build/shared/**/*.js",
"/build/shared/**/*.d.ts",
"/build/src/**/*.js",
"/build/src/**/*.d.ts",
"/build/ui/**/*.js",
"/ui/html/**",
"/ui/ts/**/*.css",
"/README.md"
],
"author": "Thomas Richards",
"license": "GPL-3.0",
"bugs": "https://github.com/Deskbot/Cognitive-Complexity-TS/issues",
"homepage": "https://github.com/Deskbot/Cognitive-Complexity-TS#readme",
"repository": "https://github.com/Deskbot/Cognitive-Complexity-TS",
"dependencies": {
"js-beautify": "^1.11.0",
"minimist": "^1.2.5",
"open": "^7.1.0",
"source-map-support": "^0.5.19",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/deep-diff": "^1.0.0",
"@types/glob": "^7.1.1",
"@types/js-beautify": "^1.8.2",
"@types/minimist": "^1.2.0",
"@types/node": "^12.12.6",
"@types/tempfile": "^3.0.0",
"deep-diff": "^1.0.2",
"glob": "^7.1.6",
"json-stream": "^1.0.0",
"tempfile": "^3.0.0"
}
}