-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "azure-msi-keyvault",
"version": "0.1.1",
"description": "Azure function app helper enriching environment variables with keyvault secrets",
"main": "index.js",
"scripts": {
"typecheck": "tsc --strictNullChecks -p jsconfig.json",
"typecheck-strict": "tsc --strictNullChecks --noImplicitAny -p jsconfig.json",
"tsc-checkjs": "tsc-checkjs --strictNullChecks index.js src/*.js tests/*.js",
"tsc-checkjs-strict": "tsc-checkjs --strictNullChecks --noImplicitAny index.js src/*.js tests/*.js",
"standard": "standard",
"eslint": "eslint *.js src/*.js tests/*.js",
"lint": "npm run standard && npm run eslint",
"pretest": "npm run lint && npm run tsc-checkjs",
"test": "tap --100 tests/*.js"
},
"author": "Janne Kujanpää",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.51",
"mock-http-server": "^1.4.2",
"rewire": "^5.0.0",
"rewiremock": "^3.14.3",
"sinon": "^9.0.2",
"standard": "^14.3.4",
"tap": "^14.10.7",
"tsc-checkjs": "^2.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"bent": "^7.3.7"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/jikuja/azure-msi-keyvault.git"
},
"homepage": "https://github.com/jikuja/azure-msi-keyvault#readme"
}