-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "ensure-unpublished-release-action",
"version": "1.0.4",
"description": "Check that a given GitHub release tag does not already exist",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "npx tsc",
"format:write": "npx prettier --write '**/*.ts'",
"format:check": "npx prettier --check '**/*.ts'",
"lint": "npx eslint .",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 NODE_ENV=test npx jest",
"all": "npm run format:write && npm run lint && npm run test && npm run package"
},
"engines": {
"node": ">=24.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdb/ensure-unpublished-release-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "mdb",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/github": "^8.0.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.6.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^9.39.2",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"js-yaml": "^4.1.1",
"rimraf": "^6.1.3",
"rollup": "^4.60.2",
"ts-jest": "^29.4.9",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.9.3"
}
}