-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "@ttwiesal/postman-runner",
"version": "1.0.9",
"description": "Runs postman collection async",
"main": "index.js",
"bin": {
"postman-runner": "./index.js"
},
"scripts": {
"start": "node index.js --runCount=30 --collection=./sample-collections/TSTcloud.postman_collection.json",
"test": "jest --coverage --coverageReporters=json",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grollmus/postman-runner.git"
},
"author": "Alexander Wiesinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/grollmus/postman-runner/issues"
},
"homepage": "https://github.com/grollmus/postman-runner#readme",
"dependencies": {
"async": "^3.2.1",
"chalk": "^4.1.2",
"newman": "^6.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"eslint": "^8.50.0",
"jest": "^29.5.5",
"jest-junit": "^16.0.0",
"prettier": "^3.0.3"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"coverageReporters": [
"json",
"html"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 80,
"lines": 90,
"statements": 90
}
}
}
}