-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.05 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
{
"name": "@jimdo/components-stats",
"version": "3.2.0",
"description": "Collect stats about ui components usage across the specified GitHub org",
"main": "./build/index.js",
"type": "module",
"files": [
"build/**/*"
],
"scripts": {
"clean": "rm -rf ./build/",
"start": "npm run clean && npm run build && node build/run.js",
"build": "tsc --project tsconfig.build.json",
"cm": "cz",
"check": "biome check --write ./src/",
"prepare": "husky install",
"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 --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jimdo/components-stats.git"
},
"license": "MIT",
"author": {
"name": "Stefania Mellai"
},
"keywords": [
"library",
"adoption",
"stats",
"statistics",
"dependency",
"visibility",
"usage",
"dependency",
"repositories",
"private",
"react",
"components"
],
"bugs": {
"url": "https://github.com/Jimdo/components-stats/issues"
},
"homepage": "https://github.com/Jimdo/components-stats#readme",
"dependencies": {
"@types/shelljs": "^0.10.0",
"package-adoption": "2.0.1",
"react-scanner": "^1.2.0",
"shelljs": "^0.10.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^29.5.14",
"@types/node": "^24.10.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "biome check --write"
},
"volta": {
"node": "20.11.0"
},
"engines": {
"node": ">= 20.11.0"
}
}