-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.26 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
{
"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",
"lint": "eslint ./src/ --fix",
"prettier": "prettier --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.8.11",
"package-adoption": "2.0.1",
"react-scanner": "^1.2.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@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.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"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"
}
}