forked from postmanlabs/newman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.34 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
{
"name": "newman",
"version": "3.9.3",
"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": "node npm/test.js",
"test-system": "node npm/test-system.js",
"test-lint": "node npm/test-lint.js",
"test-unit": "node npm/test-unit.js",
"test-integration": "node npm/test-integration.js",
"test-cli": "node npm/test-cli.js",
"test-library": "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": "2.6.0",
"cli-progress": "1.8.0",
"cli-table2": "0.2.0",
"colors": "1.2.3",
"commander": "2.15.1",
"csv-parse": "1.2.4",
"eventemitter3": "3.1.0",
"filesize": "3.6.1",
"handlebars": "4.0.11",
"lodash": "4.17.9",
"mkdirp": "0.5.1",
"parse-json": "4.0.0",
"postman-collection": "3.0.8",
"postman-collection-transformer": "2.5.9",
"postman-request": "2.85.1-postman.1",
"postman-runtime": "7.1.5",
"pretty-ms": "3.1.0",
"semver": "5.5.0",
"serialised-error": "1.1.3",
"shelljs": "0.8.2",
"word-wrap": "1.2.3",
"xmlbuilder": "10.0.0"
},
"devDependencies": {
"editorconfig": "0.15.0",
"eslint": "4.19.1",
"eslint-plugin-jsdoc": "3.6.3",
"eslint-plugin-lodash": "2.7.0",
"eslint-plugin-mocha": "4.12.1",
"eslint-plugin-security": "1.4.0",
"expect.js": "0.3.1",
"js-yaml": "3.11.0",
"jsdoc": "3.5.5",
"jsdoc-to-markdown": "4.0.1",
"mocha": "5.1.1",
"nsp": "2.8.1",
"nyc": "11.7.1",
"packity": "0.3.2",
"parse-gitignore": "0.4.0",
"postman-jsdoc-theme": "0.0.3",
"recursive-readdir": "2.2.2",
"xml2js": "0.4.19"
},
"engines": {
"node": ">=4"
}
}