-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "node-vault-user-pass",
"version": "0.0.8",
"description": "A sample code for Node.JS with Hashicorp involving Username and Password based Authentication",
"keywords": [
"hashicorp",
"password",
"passwords",
"credential",
"credentials",
"vault",
"authentication"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint --cache --max-warnings=0 --fix lib",
"format": "prettier --write ."
},
"author": "Pratik Chowdhury",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pratikpc/Node.JS-Vault-Username-Password.git"
},
"bugs": {
"url": "https://github.com/pratikpc/Node.JS-Vault-Username-Password/issues"
},
"homepage": "https://github.com/pratikpc/Node.JS-Vault-Username-Password#readme",
"peerDependencies": {
"node-vault": "^0.9.20"
},
"devDependencies": {
"@types/node": "^14.14.3",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"node-vault": "^0.9.20",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"prettier": {
"trailingComma": "none"
}
}