-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 2.15 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
{
"name": "volt",
"version": "0.0.1-alpha3",
"description": "Open source Azure Key Vault API compatible server",
"main": "./dist/main.js",
"bin": {
"volt": "./dist/main.js"
},
"scripts": {
"test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha -r ts-node/register -r tests/fixtures.ts --no-timeouts --grep \"@loki\" --recursive tests/**/*.test.ts tests/**/**/*.test.ts --exit",
"build": "tsc",
"lint": "eslint \"src/**/*.{js,ts}\" --quiet",
"lint:fix": "eslint \"src/**/*.{js,ts}\" --quiet --fix",
"docker:build": "cross-var docker build --no-cache --rm -f \"Dockerfile\" -t sebastiean/volt:$npm_package_version . && cross-var docker tag sebastiean/volt:$npm_package_version sebastiean/volt:latest",
"docker:push": "cross-var docker push sebastiean/volt:$npm_package_version && cross-var docker push sebastiean/volt:latest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@azure/core-http": "^1.2.1",
"args": "^5.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lokijs": "^1.5.11",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"rimraf": "^3.0.2",
"uri-templates": "^0.2.0",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@azure/keyvault-secrets": "^4.1.0",
"@types/args": "^3.0.0",
"@types/chai": "^4.2.14",
"@types/chai-datetime": "0.0.36",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/lokijs": "^1.5.3",
"@types/md5": "^2.2.1",
"@types/mocha": "^8.2.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.14",
"@types/rimraf": "^3.0.0",
"@types/uri-templates": "^0.1.29",
"@types/uuid": "^8.3.0",
"@types/xml2js": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.2.0",
"chai-datetime": "^1.7.0",
"chai-sorted": "^0.2.0",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}