-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 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
{
"name": "nodejs-actions-starter-template",
"description": "👋 A starter template for creating GitHub Actions with Node.js",
"version": "2.0.4",
"type": "module",
"author": {
"name": "Josh Johanning",
"email": "joshjohanning@github.com",
"url": "https://github.com/joshjohanning"
},
"private": true,
"homepage": "https://github.com/joshjohanning/nodejs-actions-starter-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/joshjohanning/nodejs-actions-starter-template.git"
},
"bugs": {
"url": "https://github.com/joshjohanning/nodejs-actions-starter-template/issues"
},
"keywords": [
"github-actions",
"template",
"starter",
"nodejs",
"hello-world"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "NODE_OPTIONS='--experimental-vm-modules' npx jest --coverage",
"coverage": "npx @joshjohanning/make-coverage-badge-better --label-color '#333' --output-path ./badges/coverage.svg",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"package": "npx @vercel/ncc build src/index.js -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "NODE_OPTIONS='--experimental-vm-modules' npx jest",
"all": "npm run format:write && npm run lint && npm run ci-test && npm run coverage && npm run package"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@octokit/rest": "^22.0.1"
},
"devDependencies": {
"@joshjohanning/make-coverage-badge-better": "^1.0.1",
"@vercel/ncc": "^0.44.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.3",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"jest": "^30.4.2",
"prettier": "^3.8.4"
}
}