-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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": "apitests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"axios": "^0.17.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.0.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^22.4.3",
"jest-extended": "^0.5.0",
"jest-html-reporter": "^2.0.0",
"lodash": "^4.17.4",
"moment-timezone": "^0.5.14",
"prettier": "1.10.2",
"regenerator-runtime": "^0.11.1",
"superagent": "^3.8.2"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"setupTestFrameworkScriptFile": "jest-extended",
"testResultsProcessor": "./node_modules/jest-html-reporter"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"eslint": "^4.14.0"
},
"jest-html-reporter": {
"pageTitle": "API Test Suite",
"outputPath": "ApiTests.html",
"includeFailureMsg": true
}
}