-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@teknologi-umum/vault",
"version": "0.1.0",
"description": "Hashicorp Vault SDK for Node.js",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"unpkg": "dist/index.iife.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./*": "./*"
},
"scripts": {
"lint": "eslint --fix --ignore-path .gitignore .",
"test:unit": "vitest run",
"test:coverage": "c8 --reporter=text --reporter=lcov npm run test:unit",
"test:tdd": "npm run test:unit; watchlist src tests -- npm run test:unit",
"test": "npm run test:coverage",
"build": "rollup -c"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/teknologi-umum/node-vault.git"
},
"funding": "https://saweria.co/teknologiumum",
"keywords": [
"programming",
"language",
"detection",
"detector",
"code",
"classify",
"classifier",
"identify",
"identifier"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/teknologi-umum/node-vault/issues"
},
"homepage": "https://github.com/teknologi-umum/node-vault#readme",
"directories": {
"lib": "./src",
"test": "./tests"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@teknologi-umum/eslint-config-typescript": "^0.0.10",
"@types/node": "^20.3.3",
"@vitest/coverage-v8": "^0.32.2",
"eslint": "^8.44.0",
"rollup": "^3.26.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vitest": "^0.32.2"
},
"dependencies": {
"undici": "^5.22.1"
},
"engines": {
"node": ">=14"
}
}