-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.41 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.41 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
{
"name": "@goodrequest/vault-env",
"version": "1.0.5",
"author": "Peter Kello <peter.kello@goodrequest.com>",
"repository": "git@github.com:GoodRequest/vault-env.git",
"license": "MIT",
"description": "Script creates the vault env file (.env.vault) and downloads the env variables form projects",
"homepage": "https://github.com/GoodRequest/vault-env.git#readme",
"bin": "./bin/index.js",
"scripts": {
"tsc": "rimraf bin && tsc --p tsconfig-cjs.json",
"type-check": "tsc --project tsconfig.json --noEmit",
"lint": "eslint scripts --color --ext .js --ext .ts",
"husky": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks"
},
"dependencies": {
"config": "3.3.11",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"lodash": "4.17.21",
"node-vault": "0.10.2",
"rimraf": "4.1.2",
"ts-node": "10.9.2"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@goodrequest/eslint-config-typescript": "1.2.1",
"@types/config": "3.3.3",
"@types/lodash": "4.14.191",
"@typescript-eslint/eslint-plugin": "5.49.0",
"commitlint-config-jira": "1.6.4",
"commitlint-plugin-jira-rules": "1.6.4",
"eslint": "8.33.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"prettier": "2.8.3",
"shx": "0.3.4",
"typescript": "5.3.3"
}
}