forked from Zooz/predator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.06 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
{
"name": "predator",
"version": "1.0.9",
"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",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node src/server.js",
"unit-tests": "nyc --check-coverage --lines 95 --reporter=html --reporter=text mocha ./tests/unit-tests --recursive",
"integration-tests": "bash ./tests/integration-tests/run.sh",
"end-to-end-tests": "bash ./tests/end-to-end-tests/run.sh",
"local-integration-tests": "bash ./tests/integration-tests/runLocal.sh",
"lint": "eslint src/**",
"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.6.0-26",
"bluebird": "^3.5.4",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"cassandra-driver": "^3.5.0",
"cassandra-migration": "^2.7.0",
"copy-dir": "^0.3.0",
"cron": "^1.6.0",
"dockerode": "^2.5.8",
"express": "^4.16.4",
"express-ajv-swagger-validation": "^0.9.0",
"express-easy-zip": "^1.1.4",
"express-requests-logger": "^1.0.18",
"fs": "0.0.1-security",
"fs-extra": "^5.0.0",
"graceful-shutdown-express": "^2.0.1",
"jsck": "^0.3.2",
"lodash": "^4.17.11",
"mathjs": "^5.9.0",
"mysql2": "^1.6.4",
"node-cmd": "^3.0.0",
"nodemailer": "^5.1.1",
"path": "^0.12.7",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"replace-in-file": "^3.4.4",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"sequelize": "^5.3.5",
"sqlite3": "^4.0.6",
"tedious": "^4.1.3",
"uuid": "^3.2.1",
"umzug": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^7.4.0",
"@commitlint/config-conventional": "^7.3.1",
"chai": "^4.2.0",
"commitlint": "^7.4.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.15.2",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"mocha": "^5.1.1",
"mochawesome": "^3.0.2",
"nock": "^10.0.6",
"nyc": "^13.3.0",
"rewire": "^4.0.1",
"should": "^13.2.1",
"sinon": "^4.5.0",
"standard-version": "^5.0.2",
"supertest": "^3.4.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": "**/databaseConnector.js",
"include": "src"
}
}