-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
52
53
54
55
56
57
{
"name": "github-key-rotator",
"version": "1.10.2",
"description": "The GitHub Key Rotator (gkr) is a CLI tool to automate the process of rotating GitHub / GitHub Enterprise SSH keys.",
"scripts": {
"lint:fix": "eslint . --ext=\".js,.ts\" --fix",
"lint:typecheck": "tsc --noEmit",
"lint": "eslint . --ext=\".js,.ts\" && tsc --noEmit",
"test": "npm run lint",
"start": "ts-node src/index.ts",
"build": "tsc",
"release": "np"
},
"bin": {
"gkr": "./build/index.js"
},
"files": [
"build/"
],
"engines": {
"node": ">=12.0.0"
},
"os": [
"darwin",
"linux"
],
"homepage": "https://github.com/kirintwn/github-key-rotator",
"repository": "github:kirintwn/github-key-rotator",
"author": "kirintw",
"license": "MIT",
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/node": "^14.6.1",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"np": "^6.4.0",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"axios": "^0.20.0",
"common-tags": "^1.8.0",
"shelljs": "^0.8.4",
"source-map-support": "^0.5.19",
"yargs": "^15.4.1"
}
}