generated from ryansonshine/typescript-npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.49 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
{
"name": "package-adoption",
"version": "2.0.1",
"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",
"lint": "eslint ./src/ --fix",
"prettier": "prettier --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": "jest --watch",
"test": "jest --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": "^6.1.2",
"@octokit/plugin-paginate-rest": "^11.3.5",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/plugin-throttling": "^9.3.2",
"type-fest": "^4.26.1",
"validate-npm-package-name": "^6.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@octokit/types": "^13.6.1",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.2",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"volta": {
"node": "20.11.0"
},
"engines": {
"node": ">= 20.11.0"
}
}