-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "create-release-plan-setup",
"version": "3.2.0",
"description": "Simple npm init bin package to add the perfect release-plan setup",
"keywords": [],
"repository": "https://github.com/embroider-build/create-release-plan-setup",
"license": "MIT",
"author": "Chris Manson <[email protected]>",
"type": "module",
"bin": "bin/release-plan-setup.js",
"files": [
"bin/",
"lib/",
"labels.json",
"release-template.md",
"plan-release-template.yml.ejs",
"publish-template.yml.ejs"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --pool=forks"
},
"dependencies": {
"ejs": "^3.1.9",
"execa": "^8.0.1",
"gitconfiglocal": "^2.1.0",
"github-label-sync": "^2.3.1",
"hosted-git-info": "^7.0.1",
"lodash.template": "^4.5.0",
"semver": "^7.6.0",
"sort-package-json": "^2.10.0",
"which": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.1.3",
"fixturify-project": "^2.1.1",
"prettier": "^3.2.5",
"release-plan": "^0.9.0",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "16.* || 18.* || >= 20"
}
}