-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"name": "github-secret-dotenv",
"version": "1.1.4",
"description": "upload secrets to github from your .env file",
"repository": "github:platane/github-secret-dotenv",
"author": {
"name": "platane",
"email": "me@platane.me",
"twitter": "platane_"
},
"keywords": [
"cli",
"github",
"github-actions",
"dotenv",
".env"
],
"license": "MIT",
"dependencies": {
"@inquirer/core": "0.0.17-alpha.0",
"@octokit/rest": "18.12.0",
"cli-spinners": "2.6.1",
"commander": "8.3.0",
"dotenv": "10.0.0",
"dotenv-expand": "5.1.0",
"mute-stream": "0.0.8",
"readline": "1.3.0",
"tweetnacl-util": "0.15.1",
"tweetsodium": "0.0.5"
},
"devDependencies": {
"@types/inquirer": "8.1.3",
"@types/jest": "27.0.3",
"@types/mute-stream": "0.0.1",
"@types/node": "16.11.10",
"jest": "27.3.1",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "4.5.2"
},
"engines": {
"node": ">=12"
},
"bin": {
"github-secret": "./lib/cli/bin",
"github-secret-dotenv": "./lib/cli/bin"
},
"files": [
"lib/**/*.*"
],
"main": "lib/index.js",
"scripts": {
"type": "tsc --noEmit",
"test": "YYY_TEST=leak jest --verbose",
"build": "tsc --declaration --outDir lib/ && cp src/cli/bin lib/cli/bin && rm -rf lib/__tests__ lib/__fixtures__",
"dev": "ts-node ./src/cli/index.ts",
"lint": "yarn prettier -c '**/*.{ts,tsx,js,jsx,json,md}' '!lib/**'"
}
}