-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
{
"name": "bombard",
"version": "0.1.7",
"description": "Load Testing with Artillery.io through AWS Lambda. Motivated by Hassy Veldstra's Artillery-Dino project",
"engines": {
"node": ">= 4.2.0"
},
"bin": {
"bombard": "lib/bombard/index.js",
"bombard-setup": "lib/config/index.js"
},
"scripts": {
"test": "mocha --recursive --throw-deprecation --require ts-node/register \"src/**/*.test.ts\"",
"build": "webpack; tsc"
},
"author": "Graham Baradoy graham@giftbit.com",
"keywords": [
"load testing",
"stress testing"
],
"repository": {
"type": "git",
"url": "https://github.com/Giftbit/bombard"
},
"bugs": {
"url": "https://github.com/Giftbit/bombard/issues",
"email": "graham@giftbit.com"
},
"license": "MPL-2.0",
"preferGlobal": true,
"dependencies": {
"@types/aws-lambda": "0.0.5",
"@types/csv-parse": "^1.1.6",
"@types/lodash": "^4.14.52",
"@types/uuid": "^2.0.29",
"uuid": "^3.0.1",
"fs": "0.0.1-security",
"csv-parse": "^1.0.1",
"artillery-core": "^2.3.1",
"async": "1.5.2",
"aws-sdk": "^2.7.7",
"lodash": "4.5.0",
"bower": "^1.8.0",
"yargs": "^4.1.0",
"stats-lite": "2.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.38",
"@types/node": "^6.0.51",
"@types/sqs-consumer": "0.0.5",
"@types/yargs": "^6.3.1",
"babel-cli": "^6.23.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"debug": "2.2.0",
"eslint": "^0.24.0",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"ts-loader": "^1.2.0",
"ts-node": "^1.7.0",
"typescript": "^2.0.9",
"webpack": "^1.14.0",
"webpack-fail-plugin": "^1.0.5",
"zip-webpack-plugin": "^0.3.0"
}
}