-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ts-pkg-metrics",
"version": "0.1.3",
"description": "Measure the health of your app architecture",
"bin": "lib/cli.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "tsc --project tsconfig.build.json",
"ci": "npm run lint && npm run build && npm test && npm run test:integration && npm run test:acceptance",
"prelink": "npm run build && npm run unlink",
"link": "sudo npm link",
"lint": "eslint --cache .",
"prepublishOnly": "npm run build",
"test": "c8 --100 ava \"src/**/*.test.ts\"",
"test:acceptance": "ava \"test/acceptance/**/*.test.ts\"",
"test:integration": "ts-node --transpileOnly test/integration test/integration/*.test.ts test/integration/**/*.test.ts",
"unlink": "sudo npm unlink -g ts-pkg-metrics"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omothm/ts-pkg-metrics.git"
},
"keywords": [
"architecture",
"clean",
"typescript"
],
"author": "Omar Othman <omar.othman@live.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/omothm/ts-pkg-metrics/issues"
},
"homepage": "https://github.com/omothm/ts-pkg-metrics#readme",
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"cli-table3": "^0.6.3",
"colors": "^1.4.0",
"commander": "^9.4.1",
"ts-schema-parser": "^0.4.0",
"tsconfig-paths": "^4.1.0"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"ava": "^5.1.0",
"c8": "^7.12.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
}
}