forked from postmanlabs/newman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.28 KB
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": "3.8.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": "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",
"publish-wiki": "node npm/publish-wiki.js"
},
"author": "Postman Labs <help@getpostman.com> (=)",
"license": "Apache-2.0",
"dependencies": {
"argparse": "1.0.9",
"async": "2.5.0",
"cli-progress": "1.4.1",
"cli-table2": "0.2.0",
"colors": "1.1.2",
"csv-parse": "1.2.1",
"eventemitter3": "2.0.3",
"filesize": "3.5.10",
"handlebars": "4.0.10",
"lodash": "4.17.2",
"mkdirp": "0.5.1",
"parse-json": "3.0.0",
"postman-collection": "2.1.0",
"postman-collection-transformer": "2.1.5",
"postman-request": "2.81.1-postman.2",
"postman-runtime": "6.2.5",
"pretty-ms": "3.0.0",
"semver": "5.4.1",
"serialised-error": "1.1.2",
"shelljs": "0.7.8",
"word-wrap": "1.2.3",
"xmlbuilder": "9.0.4"
},
"devDependencies": {
"editorconfig": "0.14.1",
"eslint": "4.4.1",
"eslint-plugin-jsdoc": "3.1.2",
"eslint-plugin-lodash": "2.4.4",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-security": "1.4.0",
"expect.js": "0.3.1",
"istanbul": "0.4.5",
"js-yaml": "3.9.1",
"jsdoc": "3.5.4",
"jsdoc-to-markdown": "3.0.0",
"mocha": "3.5.0",
"nsp": "2.7.0",
"packity": "0.3.2",
"parse-gitignore": "0.4.0",
"postman-jsdoc-theme": "0.0.3",
"recursive-readdir": "2.2.1"
},
"engines": {
"node": ">=4"
}
}