-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.22 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
{
"name": "sabik",
"description": "Source code metrics tool.",
"version": "0.2.4",
"author": "iBotchME (@ytetsuro)",
"bin": {
"sabik": "./bin/run"
},
"bugs": "https://github.com/ytetsuro/sabik/issues",
"dependencies": {
"@types/codemirror": "0.0.109",
"autoprefixer": "^10.4.0",
"bulma": "^0.9.0",
"caniuse-lite": "^1.0.30001482",
"codemirror": "^5.65.0",
"commander": "^7.2.0",
"core-js": "^3.29.1",
"decimal.js": "^10.4.0",
"esbuild": "^0.17.19",
"inversify": "^6.0.0",
"mithril": "^2.2.0",
"pako": "^1.0.0",
"php-parser": "^3.1.0",
"postcss": "^8.4.31",
"postcss-import": "^14.1.0",
"reflect-metadata": "^0.1.0",
"tslib": "^1.14.0",
"typescript": "^4.9.0"
},
"devDependencies": {
"@swc/core": "^1.3.60",
"@swc/jest": "^0.2.0",
"@types/atob": "^2.1.0",
"@types/eslint": "^7.2.0",
"@types/jest": "^29.5.0",
"@types/jsdom": "^16.2.0",
"@types/mithril": "^2.0.0",
"@types/node": "^18.15.0",
"@types/pako": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@typescript-eslint/typescript-estree": "^5.57.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^7.0.0",
"jest": "^29.5.0",
"jsdom": "^16.2.0",
"lint-staged": "^11.1.0",
"prettier": "^2.1.0",
"regenerator-runtime": "^0.13.0",
"ts-node": "^8.10.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/ytetsuro/sabik",
"keywords": [
"metrics",
"analyze",
"analysis",
"report",
"cognitive",
"complexity",
"halstead",
"maintainability",
"visualize"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "ytetsuro/sabik",
"scripts": {
"lint": "eslint ./src --ext .ts --config .eslintrc.yml",
"lint:fix": "prettier --write ./src",
"prepack": "make",
"test": "jest",
"prepare": "husky install"
},
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"npm run lint"
]
}
}