-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.93 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.93 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
{
"name": "all-contributors-cli",
"version": "6.27.0-rc.1",
"description": "Tool to easily add recognition for new contributors",
"bin": {
"all-contributors": "dist/cli.js"
},
"main": "dist/api.js",
"files": [
"dist"
],
"engines": {
"node": ">=22.22.0"
},
"scripts": {
"add-contributor": "node src/cli.js add",
"knip": "knip",
"build": "cp -r src dist",
"lint": "eslint . && prettier --check --ignore-unknown .",
"lint-fix": "eslint --fix . && prettier --write --ignore-unknown .",
"test": "vitest",
"test-coverage": "vitest --coverage",
"commit": "git-cz",
"start": "./dist/cli.js",
"prepare": "husky",
"dev": "./src/cli.js"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"!(*.js)": "prettier --ignore-unknown --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/all-contributors/cli.git"
},
"type": "module",
"keywords": [
"all-contributors",
"contributors"
],
"author": "Jeroen Engels <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/all-contributors/all-contributors-cli/issues"
},
"homepage": "https://github.com/all-contributors/all-contributors-cli#readme",
"dependencies": {
"eta": "^4.5.1",
"inquirer": "^13.3.0",
"json-fixer": "^1.6.8",
"yargs": "^18.0.0",
"yoctocolors": "^2.1.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vitest": "^0.5.4",
"git-cz": "^4.7.6",
"globals": "^17.1.0",
"husky": "^9.1.0",
"knip": "^5.83.1",
"lint-staged": "^16.2.7",
"nock": "^14.0.10",
"prettier": "^3.8.1",
"vitest": "^4.0.0"
},
"optionalDependencies": {
"prettier": "^3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}