-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "package-adoption",
"version": "2.0.2",
"description": "Find out where a js package is used across a GitHub organization, output its version and position in each repository",
"main": "./lib/src/index.js",
"type": "module",
"files": [
"lib/**/*"
],
"bin": {
"package-adoption": "lib/bin/cli.js"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"check": "biome check --write ./src/",
"prepare": "husky",
"semantic-release": "node --loader ts-node/esm ./repo-scripts/npm-release.ts",
"postversion": "node --loader ts-node/esm ./repo-scripts/npm-postVersion.ts",
"test:watch": "vitest",
"test": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"dev": "node --loader ts-node/esm ./bin/cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jimdo/package-adoption.git"
},
"license": "MIT",
"author": {
"name": "Stefania Mellai"
},
"keywords": [
"library",
"adoption",
"stats",
"statistics",
"dependency",
"visibility",
"usage",
"dependency",
"repositories",
"private"
],
"bugs": {
"url": "https://github.com/Jimdo/package-adoption/issues"
},
"homepage": "https://github.com/Jimdo/package-adoption#readme",
"dependencies": {
"@octokit/core": "^7.0.6",
"@octokit/plugin-paginate-rest": "^14.0.0",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"type-fest": "^5.5.0",
"validate-npm-package-name": "^7.0.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@octokit/types": "^16.0.0",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/node": "^24.10.2",
"@types/validate-npm-package-name": "^4.0.2",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "biome check --write"
},
"volta": {
"node": "24.14.0"
},
"engines": {
"node": ">= 24.14.0"
}
}