forked from epxlabs/serverless-artillery
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.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
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
{
"name": "serverless-artillery",
"version": "0.5.2",
"description": "A serverless performance testing tool. `serverless` + `artillery` = crush. a.k.a. Orbital Laziers [sic]",
"main": "index.js",
"bin": {
"serverless-artillery": "./bin/serverless-artillery",
"slsart": "./bin/serverless-artillery"
},
"scripts": {
"test": "./tests/test-npm-install; ./node_modules/.bin/nyc ./node_modules/.bin/_mocha -r aws-sdk \"./tests/**/*.spec.js\"; ./tests/test-npm-clean",
"test-light": "./tests/test-npm-install; ./node_modules/.bin/nyc ./node_modules/.bin/_mocha -r aws-sdk \"./tests/**/!(serverless-artillery|npm).spec.js\"; ./tests/test-npm-clean",
"test-integration": "./tests/test-npm-install; ./node_modules/.bin/_mocha --timeout=1200000 ./tests/integration/index; ./tests/test-npm-clean",
"coverage-report": "./node_modules/.bin/nyc report --reporter=lcov",
"lint": "./node_modules/.bin/eslint . bin/serverless-artillery",
"fix": "./node_modules/.bin/eslint --fix . bin/serverless-artillery",
"publish": "./node_modules/.bin/np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nordstrom/serverless-artillery.git"
},
"keywords": [
"serverless",
"artillery",
"performance",
"load",
"acceptance",
"testing",
"scale",
"lambda"
],
"author": "Erik Erikson, Greg Smith, Rob Gruhl, Danno Mayer, Andy Day, Grace Lee, Sayna Parsi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Nordstrom/serverless-artillery/issues"
},
"homepage": "https://github.com/Nordstrom/serverless-artillery#readme",
"dependencies": {
"ajv": "^6.12.3",
"aws-sdk": "^2.388.0",
"bluebird": "^3.5.3",
"diff": "^3.5.0",
"get-stdin": "^6.0.0",
"js-yaml": "^3.13.0",
"node-fetch": "^2.6.1",
"rimraf": "^2.7.1",
"semver": "^5.5.0",
"shortid": "^2.2.14",
"yargs": "^13.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.1",
"cross-spawn": "^6.0.5",
"es6-promisify": "^6.0.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.12.3",
"lodash.merge": "^4.6.2",
"mocha": "^5.1.1",
"ncp": "^2.0.0",
"np": "^5.1.3",
"nyc": "^13.2.0",
"proxyquire": "^2.1.0",
"quibble": "^0.5.5",
"recursive-readdir": "^2.2.2",
"serverless": "^1.40.0",
"sinon": "^5.0.2",
"sinon-chai": "^3.3.0",
"tmp": "0.0.33"
},
"nyc": {
"include": [
"**/*.js"
],
"exclude": [
"coverage",
"**/lib/serverless-fx.js",
"postinstall.js",
"tests",
"test.js",
"**/assets"
],
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".jsx"
],
"cache": true,
"all": true
}
}