-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 921 Bytes
/
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
{
"name": "npm-github-packages-auth-helper",
"version": "1.2.2",
"license": "LGPL-3.0-or-later",
"bin": {
"npm-github-packages-auth-helper": "dist/npm-github-packages-auth-helper"
},
"scripts": {
"prebuild": "rimraf dist/*",
"build": "ncc build src/index.ts --minify --out dist",
"postbuild": "shx mv dist/index.js dist/npm-github-packages-auth-helper && shx cp package.json LICENSE dist"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": "https://github.com/thorpelawrence/npm-github-packages-auth-helper.git",
"dependencies": {
"chalk": "^4.1.0",
"execa": "^4.0.0",
"inquirer": "^8.0.0",
"keytar": "^7.4.0",
"meow": "^9.0.0"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.35",
"@vercel/ncc": "^0.27.0",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"typescript": "^4.2.3"
}
}