-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 960 Bytes
/
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
{
"name": "aws-sqs-mocha-testframework",
"version": "1.0.0",
"description": "Testing AWS SQS Functionality",
"main": "index.js",
"repository": {
"url": "https://github.com/abhimassive/aws-sqs-mocha-testframework"
},
"scripts": {
"apitests": "node_modules/.bin/mocha ./util/testRunner.js --opts config/mocha.opts --reporter mochawesome --reporter-options reportDir=test-reports,reportFilename=sqs-test-report,json=false"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"aws-sdk": "^2.303.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"dotenv": "^6.0.0",
"mocha": "^5.0.5",
"mochawesome": "^3.1.1"
},
"dependencies": {},
"babel": {
"presets": [
"env"
],
"plugins": [
[
"transform-runtime",
{
"polyfill": false
}
]
]
}
}