-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 934 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
{
"name": "api-automation-frisby-typescript",
"version": "1.0.0",
"description": "write & run api tests using frisby",
"main": "index.js",
"dependencies": {
"@types/frisby": "^2.0.4",
"frisby": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.3",
"@types/jest-diff": "^20.0.1",
"@types/joi": "^14.3.1",
"@types/node-fetch": "^2.1.6",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-run": "^0.8.1",
"grunt-ts": "^6.0.0-beta.22",
"jest": "^24.1.0",
"jest-diff": "^24.0.0",
"jest-html-reporter": "^2.4.4",
"jest-json-reporter": "^1.2.2",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3"
},
"scripts": {
"test": "./node_modules/jest/node_modules/.bin/jest --config=jest.config.json"
},
"jestJsonReporter": {
"outputFile": "./reports/results.json"
},
"author": "Prashanth Sams",
"license": "ISC"
}