forked from Nordstrom/artillery-plugin-aws-sigv4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "artillery-plugin-aws-sigv4",
"version": "0.0.5",
"description": "A plugin for artillery.io that add an authentication header to every request that conforms to V4 of the AWS Signature Specification. See https://github.com/shoreditch-ops/artillery. Also see http://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run jshint",
"lint": "./node_modules/.bin/standard",
"lint-fix": "./node_modules/.bin/standard --fix",
"jshint": "./node_modules/.bin/jshint --exclude node_modules --exclude test .",
"publish": "./node_modules/.bin/np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nordstrom/artillery-plugin-aws-sigv4.git"
},
"keywords": [
"artillery",
"aws",
"sigv4",
"plugin"
],
"author": "Greg Smith <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nordstrom/artillery-plugin-aws-sigv4/issues"
},
"homepage": "https://github.com/nordstrom/artillery-plugin-aws-sigv4#readme",
"peerDependencies": {
"aws-sdk": "^2.750.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"jshint": "^2.11.1",
"np": "^6.2.3",
"standard": "^14.3.4"
},
"jshintConfig": {
"esversion": 6,
"node": true,
"asi": true
},
"dependencies": {
"aws-sdk": "^2.751.0"
}
}