-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.37 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.37 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
{
"name": "adopter",
"version": "0.10.3",
"type": "module",
"description": "Auditing tool for tracking packages and modules usage, for increasing adoption of libraries",
"repository": "fernandopasik/adopter",
"author": "Fernando Pasik <fernando@pasik.com.ar> (https://fernandopasik.com)",
"license": "MIT",
"bin": {
"adopter": "./bin/adopter.js"
},
"main": "adopter.js",
"typings": "adopter.d.ts",
"module": "adopter.js",
"files": [
"/adopter.*",
"/bin",
"/lib"
],
"keywords": [
"adoption",
"cli",
"dependencies",
"libraries",
"metrics",
"modules",
"packages",
"report",
"statistics",
"stats",
"usage"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x bin/adopter.js",
"check-types": "tsc --noEmit",
"clean": "del coverage bin lib adopter.*",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"prepare": "husky",
"preversion": "npm run verify",
"start": "tsc -p tsconfig.build.json -w",
"test": "jest",
"test:coverage": "jest --coverage",
"verify": "npm run format:check && npm run lint && npm run check-types && npm run test:coverage && npm run build"
},
"dependencies": {
"chalk": "^5.6.2",
"chalk-template": "^1.1.2",
"execa": "^9.6.1",
"globby": "^16.1.1",
"loglevel": "^1.9.2",
"progress": "^2.0.3",
"typescript": "^5.9.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/js": "^9.39.4",
"@jest/globals": "^30.3.0",
"@tsconfig/strictest": "^2.0.8",
"@types/jest": "^30.0.0",
"@types/node": "^25.4.0",
"@types/progress": "^2.0.7",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-yml": "^3.3.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-junit": "^16.0.0",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-pkg": "^0.21.2",
"prettier-plugin-sh": "^0.18.0",
"ts-jest": "^29.4.6",
"type-fest": "^5.4.4",
"typescript-eslint": "^8.57.0"
}
}