-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.35 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
{
"name": "drunk-coding",
"version": "1.0.2",
"scripts": {
"install-chilkat": "node install-chilkat.js",
"postinstall": "husky install",
"new-stack": "pulumi stack init --secrets-provider=passphrase",
"up": "pulumi up --yes --skip-preview",
"reup": "pulumi up --refresh --yes --skip-preview",
"destroy": "pulumi destroy --yes --skip-preview",
"update": "ncu -u && npm install",
"export": "pulumi stack export --file state.json",
"import": "pulumi stack import --file state.json",
"test-leak": "cross-env PULUMI_DEBUG_PROMISE_LEAKS=true TEST_MODE=true TS_NODE_PROJECT='./tsconfig.test.json' mocha --timeout 10000 -r ts-node/register 'z_tests/**/*.ts'",
"test": "cross-env TEST_MODE=true TS_NODE_PROJECT='./tsconfig.test.json' mocha --timeout 10000 -r ts-node/register 'z_tests/**/*.test.ts'",
"testcert": "cross-env TEST_MODE=true TS_NODE_PROJECT='./tsconfig.test.json' mocha --timeout 10000 -r ts-node/register 'z_tests/**/cert.test.ts'",
"test-cover": "cross-env TEST_MODE=true TS_NODE_PROJECT='./tsconfig.test.json' nyc mocha --timeout 10000 -r ts-node/register 'z_tests/**/*.ts'",
"lint": "eslint **/*.ts",
"lint:fix": "eslint **/*.ts --fix"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/mssql": "^9.1.0",
"@types/netmask": "^2.0.2",
"@types/node": "^20.6.2",
"@types/node-forge": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"chai": "^4.3.8",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@azure/identity": "^3.3.0",
"@azure/keyvault-keys": "^4.7.2",
"@azure/keyvault-secrets": "^4.7.0",
"@pulumi/azure-native": "^2.7.0",
"@pulumi/azuread": "5.41.0",
"@pulumi/cloudflare": "^5.10.0",
"@pulumi/kubernetes": "^4.2.0",
"@pulumi/pulumi": "^3.83.0",
"@pulumi/random": "^4.13.4",
"@pulumi/tls": "^4.10.0",
"axios": "^1.5.0",
"netmask": "^2.0.2",
"node-forge": "^1.3.1",
"to-words": "^3.6.1",
"url-join-ts": "^1.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
]
}
}