-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
44
45
46
47
48
49
50
51
{
"name": "@forbital/github-token",
"description": "Obtain GitHub Token from various location.",
"version": "5.0.1",
"author": "Yasuaki Uechi <[email protected]> (https://uechi.io)",
"scripts": {
"build": "shx rm -rf dist/* && tsc && shx chmod +x dist/cli.js",
"dev": "tsc -w",
"prepublishOnly": "yarn build",
"test": "jest"
},
"main": "dist/github-token.js",
"types": "dist/github-token.d.ts",
"bin": "dist/cli.js",
"files": [
"dist"
],
"dependencies": {
"js-yaml": "^4.1.0",
"minimist": "^1.2.6"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/minimist": "^1.2.2",
"@types/mock-fs": "^4.13.1",
"@types/node": "^17.0.23",
"@types/prompt-sync": "^4.1.1",
"jest": "^27.5.1",
"mock-fs": "^5.1.2",
"shx": "^0.3.4",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"homepage": "https://github.com/forbital/github-token",
"repository": {
"type": "git",
"url": "https://github.com/forbital/github-token.git"
},
"bugs": {
"url": "https://github.com/forbital/github-token/issues"
},
"license": "Apache-2.0",
"keywords": [
"github-token"
],
"publishConfig": {
"access": "public"
}
}