-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.55 KB
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
58
59
60
61
62
63
64
{
"name": "@swordev/secretctl-cli",
"version": "1.0.1",
"description": "CLI tool for managing secrets",
"main": "lib/bin.js",
"files": [
"lib/**/*.js"
],
"bin": {
"secretctl": "lib/bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swordev/secretctl-cli.git"
},
"keywords": [
"secret",
"kubernetes",
"k8s",
"generate",
"password",
"htpasswd"
],
"author": "Juanra GM <juanrgm724@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/swordev/secretctl-cli/issues"
},
"homepage": "https://github.com/swordev/secretctl-cli#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "rimraf lib/* && npm run build:ts",
"build:ts": "tsc -p ./src/tsconfig.json",
"watch": "npm run watch:ts",
"watch:ts": "tsc -p ./src/tsconfig.json -w",
"test": "jest",
"lint": "eslint . --ext .ts,.js,.json",
"lint:fix": "eslint . --ext .ts,.js,.json --fix",
"prepare": "npm run build && npm run lint && npm run test"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.0",
"prettier": "2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"commander": "^6.2.0"
}
}