-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
86 lines (86 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "newman",
"version": "6.2.1",
"description": "Command-line companion utility for Postman",
"author": "Postman Labs <[email protected]> (=)",
"license": "Apache-2.0",
"homepage": "https://github.com/postmanlabs/newman",
"bugs": "https://github.com/postmanlabs/newman/issues",
"repository": {
"type": "git",
"url": "git://github.com/postmanlabs/newman.git"
},
"keywords": [
"newman",
"postman",
"api",
"testing",
"ci",
"rest-client",
"rest"
],
"main": "index.js",
"bin": {
"newman": "./bin/newman.js"
},
"preferGlobal": true,
"scripts": {
"docker-publish": "./npm/docker-publish.sh",
"release": "node npm/create-release.js",
"test": "npm run test-lint && npm run test-system && npm run test-unit && npm run test-integration && npm run test-cli && npm run test-library",
"test-cli": "nyc --nycrc-path=.nycrc.js node npm/test-cli.js",
"test-integration": "nyc --nycrc-path=.nycrc.js node npm/test-integration.js",
"test-library": "nyc --nycrc-path=.nycrc.js node npm/test-library.js",
"test-lint": "node npm/test-lint.js",
"test-system": "node npm/test-system.js",
"test-unit": "nyc --nycrc-path=.nycrc.js node npm/test-unit.js"
},
"dependencies": {
"@postman/tough-cookie": "4.1.3-postman.1",
"async": "3.2.5",
"chardet": "2.0.0",
"cli-progress": "3.12.0",
"cli-table3": "0.6.5",
"colors": "1.4.0",
"commander": "11.1.0",
"csv-parse": "4.16.3",
"filesize": "10.1.4",
"liquid-json": "0.3.1",
"lodash": "4.17.21",
"mkdirp": "3.0.1",
"postman-collection": "4.4.0",
"postman-collection-transformer": "4.1.8",
"postman-request": "2.88.1-postman.34",
"postman-runtime": "7.39.1",
"pretty-ms": "7.0.1",
"semver": "7.6.3",
"serialised-error": "1.1.3",
"word-wrap": "1.2.5",
"xmlbuilder": "15.1.1"
},
"devDependencies": {
"@postman/shipit": "^0.4.0",
"chai": "^4.4.1",
"dependency-check": "^4.1.0",
"dockerfile_lint": "^0.3.4",
"editorconfig": "^2.0.0",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-security": "^2.1.1",
"js-yaml": "^4.1.0",
"mocha": "^10.7.3",
"nock": "^13.5.4",
"nyc": "^15.1.0",
"parse-gitignore": "^2.0.0",
"recursive-readdir": "^2.2.3",
"server-destroy": "^1.0.1",
"shelljs": "^0.8.5",
"sinon": "^18.0.0",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=16"
}
}