-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
86 lines (86 loc) · 3.32 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
{
"name": "@fortinet/autoscale",
"description": "Fortinet Autoscale project(s), core module.",
"version": "3.4.2",
"main": "fortigate-autoscale/dist/index.js",
"types": "fortigate-autoscale/dist/types/index.d.ts",
"scripts": {
"audit-production": "npm audit --production",
"build": "npm-run-all pre-build clear-dist compile",
"build-artifacts": "npm-run-all build make-dist",
"bundle": "cd fortigate-autoscale && npm unlink --no-save @fortinet/autoscale-core && cd .. && npm pack ./fortigate-autoscale",
"clear-dist": "rimraf dist/ && rimraf fortigate-autoscale/dist/",
"compile": "tsc --build",
"lint-check": "ftnt-devops-ci c -fl -F .eslintignore -L .eslintignore \"{*,**/*}{.js,.json,.ts}\"",
"lint-fix": "ftnt-devops-ci f -fl -F .eslintignore -L .eslintignore \"**/*{.js,.json,.ts}\"",
"make-dist": "npm-run-all build bundle",
"pre-build": "cd core && rimraf node_modules/ && rimraf dist/ && npm install && cd .. && cd fortigate-autoscale && rimraf node_modules/ && rimraf dist/ && npm install && cd ..",
"pre-push": "npm-run-all lint-check audit-production test build",
"sync-version": "node scripts/compiled/sync-version.js",
"test": "mocha --timeout 3600000 -r ts-node/register -r tsconfig-paths/register test/{*,**/**/*}.spec.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-check",
"pre-push": "npm run pre-push"
}
},
"keywords": [],
"author": "Fortinet <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/semver": "^7.3.4",
"archiver": "^4.0.1",
"comment-json": "^3.0.2",
"decompress": "^4.2.1",
"eslint-plugin-mocha": "^6.3.0",
"ftnt-devops-ci": "https://github.com/fortinet/ftnt-devops-ci/releases/download/1.1.7/ftnt-devops-ci-1.1.7.tgz",
"husky": "^4.3.0",
"mocha": "^9.2.0",
"mocha-loader": "^5.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"semver": "^7.3.5",
"shelljs": "^0.8.5",
"sinon": "^9.0.1",
"ts-node": "^8.7.0",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^3.9.9"
},
"dependencies": {
"@types/archiver": "^3.1.0",
"@types/aws-lambda": "^8.10.46",
"@types/comment-json": "^1.1.1",
"@types/decompress": "^4.2.3",
"@types/node": "^13.9.2",
"@types/shelljs": "^0.8.7",
"@types/sinon": "^9.0.1",
"@types/xml2js": "^0.4.5",
"aws-sdk": "^2.677.0",
"axios": "^0.21.4",
"chalk": "^4.0.0",
"http-status-codes": "^1.4.0",
"rimraf": "^3.0.2",
"xml2js": "^0.4.23"
},
"peerDependencies": {
"archiver": "^4.0.1",
"chalk": "^4.0.0",
"comment-json": "^3.0.2",
"decompress": "^4.2.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"sinon": "^9.0.1",
"typescript": "^3.9.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fortinet/autoscale-core.git"
},
"bugs": {
"url": "https://github.com/fortinet/autoscale-core/issues"
},
"homepage": "https://github.com/fortinet/autoscale-core#readme"
}