forked from postmanlabs/newman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.66 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
87
88
89
90
91
{
"name": "newman",
"version": "5.2.2",
"description": "Command-line companion utility for Postman",
"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": {
"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-system": "node npm/test-system.js",
"test-lint": "node npm/test-lint.js",
"test-unit": "nyc --nycrc-path=.nycrc.js node npm/test-unit.js",
"test-integration": "nyc --nycrc-path=.nycrc.js node npm/test-integration.js",
"test-cli": "nyc --nycrc-path=.nycrc.js node npm/test-cli.js",
"test-library": "nyc --nycrc-path=.nycrc.js node npm/test-library.js",
"build-docs": "node npm/build-docs.js",
"build-wiki": "node npm/build-wiki.js",
"publish-docs": "node npm/publish-docs.js",
"postpublish": "./npm/postpublish.sh",
"publish-wiki": "node npm/publish-wiki.js"
},
"author": "Postman Labs <help@postman.com> (=)",
"license": "Apache-2.0",
"dependencies": {
"async": "3.2.0",
"chardet": "1.3.0",
"cli-progress": "3.9.0",
"cli-table3": "0.6.0",
"colors": "1.4.0",
"commander": "7.1.0",
"csv-parse": "4.15.3",
"eventemitter3": "4.0.7",
"filesize": "6.1.0",
"lodash": "4.17.21",
"mkdirp": "1.0.4",
"postman-collection": "3.6.9",
"postman-collection-transformer": "4.0.1",
"postman-request": "2.88.1-postman.28",
"postman-runtime": "7.26.10",
"pretty-ms": "7.0.1",
"semver": "7.3.4",
"serialised-error": "1.1.3",
"tough-cookie": "3.0.1",
"word-wrap": "1.2.3",
"xmlbuilder": "15.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"dockerfile_lint": "^0.3.4",
"editorconfig": "^0.15.3",
"eslint": "^7.17.0",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-security": "^1.4.0",
"js-yaml": "^4.0.0",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^7.0.0",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"nyc": "^15.1.0",
"packity": "^0.3.2",
"parse-gitignore": "^1.0.1",
"postman-jsdoc-theme": "^0.0.3",
"recursive-readdir": "^2.2.2",
"server-destroy": "^1.0.1",
"shelljs": "^0.8.4",
"sinon": "^9.2.2",
"xml2js": "^0.4.23"
},
"engines": {
"node": ">=10"
}
}