-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 KB
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
{
"name": "ncloc",
"version": "1.0.13",
"author": "Michal Cieslar",
"type": "module",
"main": "dist/src/index.ts",
"bin": {
"ncloc": "bin/ncloc.js"
},
"files": ["bin", "dist"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cieslarmichal/ncloc.git"
},
"bugs": {
"url": "https://github.com/cieslarmichal/ncloc/issues"
},
"keywords": [
"cloc",
"count lines of code",
"lines of code",
"loc",
"programming-languages"
],
"scripts": {
"build:clean": "rimraf dist",
"build": "tsc --build tsconfig.build.json",
"build:dev": "tsc --build tsconfig.json",
"test:unit": "vitest .unit.test.ts --threads false",
"test:integration": "vitest .integration.test.ts --threads false"
},
"dependencies": {
"cli-table": "^0.3.11",
"tslib": "^2.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/yargs": "^17.0.24",
"@types/cli-table": "^0.3.1",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}