92 lines
2.7 KiB
JSON
92 lines
2.7 KiB
JSON
{
|
|
"name": "newman",
|
|
"version": "5.3.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 <help@postman.com> (=)",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"async": "3.2.1",
|
|
"chardet": "1.3.0",
|
|
"cli-progress": "3.9.0",
|
|
"cli-table3": "0.6.0",
|
|
"colors": "1.4.0",
|
|
"commander": "7.2.0",
|
|
"csv-parse": "4.16.3",
|
|
"eventemitter3": "4.0.7",
|
|
"filesize": "8.0.0",
|
|
"lodash": "4.17.21",
|
|
"mkdirp": "1.0.4",
|
|
"postman-collection": "4.1.0",
|
|
"postman-collection-transformer": "4.1.3",
|
|
"postman-request": "2.88.1-postman.30",
|
|
"postman-runtime": "7.28.4",
|
|
"pretty-ms": "7.0.1",
|
|
"semver": "7.3.5",
|
|
"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.32.0",
|
|
"eslint-plugin-jsdoc": "^36.1.0",
|
|
"eslint-plugin-lodash": "^7.3.0",
|
|
"eslint-plugin-mocha": "^9.0.0",
|
|
"eslint-plugin-security": "^1.4.0",
|
|
"js-yaml": "^4.1.0",
|
|
"jsdoc": "^3.6.7",
|
|
"jsdoc-to-markdown": "^7.0.0",
|
|
"mocha": "^9.1.1",
|
|
"nock": "^13.1.3",
|
|
"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": "^11.1.2",
|
|
"xml2js": "^0.4.23"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
}
|
|
}
|