-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "get-prereqs",
"version": "1.3.0",
"description": "Get prereqs for local dist",
"main": "src/get-prereqs.mjs",
"type": "module",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "mocha",
"build": "./build-release.mjs",
"preversion": "npm test && npm run lint",
"version": "npm run build && ./prep-changelog && git add -A dist CHANGELOG.md",
"postversion": "git push origin HEAD && git push origin v$(npm pkg get version --workspaces=false | tr -d \\\") && git push -f origin $(./retag)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perl-actions/get-prereqs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/perl-actions/get-prereqs/issues"
},
"homepage": "https://github.com/perl-actions/get-prereqs#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"peggy": "^4.0.3"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@peggyjs/eslint-plugin": "^2.1.2",
"@stylistic/eslint-plugin": "^2.8.0",
"chai": "^5.1.1",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-plugin-mocha": "^10.5.0",
"esmock": "^2.6.7",
"globals": "^15.9.0",
"mocha": "^10.7.3"
}
}