-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
93 lines (93 loc) · 3.52 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "fortigate-autoscale-azure",
"version": "3.6.0",
"description": "Fortinet FortiGate Autoscale for Azure",
"main": "dist/transpiled/index.js",
"types": "dist/types/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"audit-production": "npm audit --production",
"build": "npm run clear-dist && npm run compile",
"bundle": "webpack --mode=production",
"clear-dist": "shx rm -rf dist",
"compile": "tsc",
"lint-check-code": "node node_modules/ftnt-devops-ci/bin/ftnt-devops-ci c -fl -F .eslintignore -L .eslintignore \"{*,**/*}{.js,.json,.ts}\"",
"lint-check-template": "node node_modules/ftnt-devops-ci/bin/ftnt-devops-ci c -f -F .eslintignore -L .eslintignore \"**/*.json\" --parser \"json\"",
"lint-check": "npm run lint-check-code && npm run lint-check-template",
"lint-fix-code": "node node_modules/ftnt-devops-ci/bin/ftnt-devops-ci f -fl -F .eslintignore -L .eslintignore \"**/*{.js,.json,.ts}\"",
"lint-fix-template": "node node_modules/ftnt-devops-ci/bin/ftnt-devops-ci f -f -F .eslintignore -L .eslintignore \"**/*.json\" --parser \"json\"",
"lint-fix": "npm run lint-fix-code && npm run lint-fix-template",
"make-dist": "npm-run-all build bundle && node build/scripts/make-dist.js",
"pre-push": "npm-run-all lint-check audit-production test build",
"sync-version": "node build/scripts/sync-version.js",
"test": "mocha --timeout 3600000 -r ts-node/register test/*.spec.ts",
"version": "npm run sync-version && npm run lint-fix && git add -u"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-check",
"pre-push": "npm run pre-push"
}
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/fortinet/fortigate-autoscale-azure.git"
},
"author": "Fortinet <github@fortinet.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fortinet/fortigate-autoscale-azure/issues"
},
"homepage": "https://github.com/fortinet/fortigate-autoscale-azure#readme",
"dependencies": {
"@azure/arm-compute": "^15.0.0",
"@azure/arm-network": "^23.2.0",
"@azure/cosmos": "^3.9.5",
"@azure/functions": "^1.2.3",
"@azure/identity": "^4.0.0",
"@azure/keyvault-secrets": "^4.7.0",
"@azure/ms-rest-js": "^2.2.1",
"@azure/ms-rest-nodeauth": "^3.0.9",
"@azure/storage-blob": "^12.17.0",
"@types/node": "^13.13.50",
"axios": "^1.6.5",
"http-status-codes": "^2.3.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/comment-json": "^2.4.2",
"@types/mocha": "^10.0.6",
"@types/semver": "^7.5.6",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"adm-zip": "^0.5.10",
"azure-functions-core-tools": "^4.0.5455",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"comment-json": "^4.2.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prettier": "^5.1.3",
"ftnt-devops-ci": "https://github.com/fortinet/ftnt-devops-ci/releases/download/1.1.8/ftnt-devops-ci-1.1.8.tgz",
"husky": "^9.0.10",
"json-loader": "^0.5.7",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"shx": "^0.3.4",
"sinon": "^17.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
}
}