forked from extractions/netrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "netrc",
"version": "2.0.1",
"description": "Append an entry to the netrc file",
"main": "dist/index.js",
"scripts": {
"fmt": "node node_modules/.bin/prettier --write **/*.ts",
"lint": "node node_modules/.bin/eslint **/*.ts",
"build": "rm -rf dist/ && ncc build src/create.ts --minify -o dist/create && ncc build src/remove.ts --minify -o dist/remove",
"run": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extractions/netrc.git"
},
"author": "Ross MacArthur <[email protected]>",
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/extractions/netrc/issues"
},
"homepage": "https://github.com/extractions/netrc#readme",
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}