forked from little-core-labs/netrc-creds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "netrc-creds",
"version": "3.0.2",
"private": true,
"description": "Set up netrc creds in Github Actions",
"main": "index.js",
"scripts": {
"test": "standard",
"release": "git push --follow-tags && gh-release -y",
"version": "npm run build && auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md dist",
"build": "rm -rf dist && esbuild index.js --bundle --platform=node --target=node16 --sourcemap=external --outdir=dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/netrc-creds.git"
},
"keywords": [
"github",
"actions",
"netrc"
],
"author": "Bret Comnes <[email protected]> (https://bret.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcomnes/netrc-creds/issues"
},
"homepage": "https://github.com/bcomnes/netrc-creds#readme",
"dependencies": {
"@actions/core": "1.11.1",
"nanoassert": "^2.0.0"
},
"devDependencies": {
"esbuild": "^0.25.0",
"auto-changelog": "^2.2.0",
"gh-release": "^7.0.2",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"dist"
]
}
}