forked from postmanlabs/newman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.61 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
{
"name": "newman",
"version": "5.0.0",
"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 <[email protected]> (=)",
"license": "Apache-2.0",
"dependencies": {
"async": "3.2.0",
"chardet": "1.0.0",
"cli-progress": "3.7.0",
"cli-table3": "0.6.0",
"colors": "1.4.0",
"commander": "5.0.0",
"csv-parse": "4.8.8",
"eventemitter3": "4.0.0",
"filesize": "6.1.0",
"lodash": "4.17.15",
"mkdirp": "1.0.4",
"postman-collection": "3.6.0",
"postman-collection-transformer": "3.3.1",
"postman-request": "2.88.1-postman.21",
"postman-runtime": "7.24.2",
"pretty-ms": "6.0.1",
"semver": "7.2.2",
"serialised-error": "1.1.3",
"word-wrap": "1.2.3",
"xmlbuilder": "15.1.1"
},
"devDependencies": {
"chai": "4.2.0",
"dockerfile_lint": "0.3.3",
"editorconfig": "0.15.3",
"eslint": "6.8.0",
"eslint-plugin-jsdoc": "22.1.0",
"eslint-plugin-lodash": "6.0.0",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-security": "1.4.0",
"js-yaml": "3.13.1",
"jsdoc": "3.6.4",
"jsdoc-to-markdown": "5.0.3",
"mocha": "7.1.1",
"nock": "12.0.3",
"nyc": "15.0.1",
"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.3",
"sinon": "9.0.2",
"xml2js": "0.4.23"
},
"engines": {
"node": ">=10"
}
}