-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
122 lines (122 loc) · 3.54 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"$schema": "https://json.schemastore.org/package",
"name": "predator",
"version": "1.7.1",
"description": "Framework that manages the entire lifecycle of load testing a server, from creating test files, running scheduled and on-demand tests, and viewing test results.",
"main": "server.js",
"engines": {
"node": ">=12.x",
"npm": "6.x"
},
"directories": {
"test": "tests"
},
"scripts": {
"setup-local-env": "npm install --no-save shelljs && node setup-env.js",
"start-local": "node -r dotenv/config src/server.js",
"start": "node src/server.js",
"unit-tests": "nyc --check-coverage --lines 90 --reporter=html --reporter=text mocha ./tests/unit-tests --recursive",
"integration-tests": "bash ./tests/integration-tests/run.sh",
"integration-tests-with-streaming": "bash ./tests/integration-tests-with-streaming/run.sh",
"local-integration-tests": "bash ./tests/integration-tests/runLocal.sh --timeout=10000",
"lint": "eslint ./src/**/**.js ./tests/**/**.js",
"release": "standard-version",
"test": "npm run lint && npm run unit-tests && npm run local-integration-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zooz/predator.git"
},
"keywords": [
"performance",
"framework",
"scheduler",
"dsl",
"kubernetes",
"metronome"
],
"author": "zooz",
"license": "ISC",
"bugs": {
"url": "https://github.com/Zooz/predator/issues"
},
"homepage": "https://github.com/Zooz/predator#readme",
"dependencies": {
"artillery": "^1.7.9",
"aws-sdk": "^2.814.0",
"body-parser": "^1.19.0",
"cron": "^1.8.1",
"dockerode": "^2.5.8",
"express": "^4.17.1",
"express-ajv-swagger-validation": "^1.1.1",
"express-easy-zip": "^1.1.4",
"express-fileupload": "^1.1.10",
"express-http-context": "^1.2.4",
"express-requests-logger": "^3.0.2",
"graceful-shutdown-express": "^2.0.1",
"jsck": "^0.3.2",
"kafkajs": "^1.15.0",
"lodash": "^4.17.21",
"mariadb": "^2.4.2",
"mathjs": "^7.5.1",
"mysql2": "^2.2.5",
"nodemailer": "^6.7.3",
"pg": "^8.4.1",
"pg-hstore": "^2.3.3",
"pino": "^6.3.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"semver": "^7.3.2",
"sequelize": "^5.22.3",
"slack-emojis": "^1.1.1",
"sqlite3": "5.0.0",
"tedious": "^9.2.2",
"umzug": "^2.3.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.0.2",
"@commitlint/cli": "^10.0.0",
"@commitlint/config-conventional": "^10.0.0",
"@map-colonies/standard-version-update-openapi3-version": "0.0.1",
"async-retry": "^1.3.1",
"chai": "^4.2.0",
"commitlint": "^10.0.0",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^1.3.1",
"mocha": "^7.1.1",
"mochawesome": "^4.1.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"rewire": "^5.0.0",
"should": "^13.2.1",
"sinon": "^4.5.0",
"standard-version": "^9.3.0",
"supertest": "^3.4.2",
"yaml": "^1.10.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"**/databaseConnector.js",
"**/database.js"
],
"include": "src"
}
}