-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "vault-api",
"version": "1.1.2",
"description": "Axios-like NodeJS API for Hashicorp Vault.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Sai Hemanth Bheemreddy",
"url": "https://saihemanthbr.github.io/"
},
"license": "MIT License",
"homepage": "https://github.com/SaiHemanthBR/vault-api/wiki",
"keywords": [
"vault",
"secrets",
"manage",
"hashicorp",
"hashicorp-vault",
"vault-api",
"secrets-management",
"vaultproject",
"hashivault"
],
"bugs": {
"url": "https://github.com/SaiHemanthBR/vault-api/issues"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"pretest": "npm run lint && npm run build",
"test": "jest --detectOpenHandles",
"prepare": "rm -rf dist/ && tsc --project tsconfig.prod.json"
},
"dependencies": {
"axios": "^0.21.4"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.4.2",
"jest": "^27.2.0",
"joi": "^17.4.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/SaiHemanthBR/vault-api.git"
}
}