-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "thoughtworks-tech-radar-volumes",
"version": "1.0.0",
"description": "CLI and complete volume dataset for Thoughtworks Technology Radars",
"author": "Adam Setch @setchy",
"homepage": "https://github.com/setchy/thoughtworks-tech-radar-volumes",
"license": "ISC",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/setchy/thoughtworks-tech-radar-volumes"
},
"bugs": {
"url": "https://github.com/setchy/thoughtworks-tech-radar-volumes/issues"
},
"keywords": [
"tech-radar"
],
"scripts": {
"start": "ts-node src/index.ts",
"lint": "biome check --fix",
"lint:check": "biome check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@tsconfig/node24": "24.0.4",
"@types/lodash": "4.17.24",
"@types/node": "24.13.0",
"commander": "15.0.0",
"dotenv": "17.4.2",
"googleapis": "173.0.0",
"lodash": "4.18.1",
"cheerio": "1.2.0",
"ts-node": "10.9.2",
"typescript": "6.0.3"
},
"engines": {
"node": "24"
},
"packageManager": "pnpm@11.5.1",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
]
},
"lint-staged": {
"*": "biome check --fix --no-errors-on-unmatched"
}
}