forked from epxlabs/serverless-artillery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.36 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
{
"name": "serverless-artillery",
"version": "0.3.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": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha -r aws-sdk -r ./lib/lambda/node_modules/artillery-core \"./tests/**/*.spec.js\"",
"light": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha -r aws-sdk -r ./lib/lambda/node_modules/artillery-core \"./tests/**/!(serverless-artillery|npm).spec.js\"",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint . bin/serverless-artillery",
"postinstall": "node ./postinstall.js",
"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, Jane Savina, Jason Olmstead, Greg Smith, Rob Gruhl, Andy Day",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Nordstrom/serverless-artillery/issues"
},
"homepage": "https://github.com/Nordstrom/serverless-artillery#readme",
"dependencies": {
"aws-sdk": "^2.5.0",
"bluebird": "^3.4.6",
"get-stdin": "^5.0.1",
"js-yaml": "^3.6.1",
"semver": "^5.3.0",
"shortid": "^2.2.6",
"yargs": "^6.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"mocha": "^3.0.2",
"np": "^2.16.0",
"nyc": "^11.0.3",
"quibble": "^0.5.3",
"serverless": "^1.0.3",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0"
},
"nyc": {
"include": [
"**/*.js"
],
"exclude": [
"coverage",
"**/lib/serverless-fx.js",
"postinstall.js",
"tests",
"test.js"
],
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".jsx"
],
"cache": true,
"all": true
}
}