-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
106 lines (106 loc) · 3.32 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "postman-runtime",
"version": "7.43.1",
"description": "Underlying library of executing Postman Collections",
"author": "Postman Inc.",
"license": "Apache-2.0",
"main": "index.js",
"browser": {
"./lib/requester/request-wrapper.js": "./lib/requester/browser/request.js",
"postman-request": "./lib/requester/browser/request.js",
"jose": "./node_modules/jose/dist/browser/bundle.js"
},
"homepage": "https://github.com/postmanlabs/postman-runtime#readme",
"bugs": {
"email": "help@postman.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postmanlabs/postman-runtime.git"
},
"keywords": [
"postman",
"collection",
"runtime",
"runner"
],
"scripts": {
"codecov": "node npm/publish-coverage.js",
"dist": "node npm/dist.js",
"memory-check": "npm/memory-check.sh",
"prepack": "npm run dist",
"release": "node npm/create-release.js",
"test": "npm run test-lint && npm run test-system && npm run test-unit && npm run test-integration && npm run test-integration-legacy",
"test-browser": "npm run dist && node npm/test-browser.js",
"test-contract": "node npm/test-contract.js",
"test-electron": "node npm/test-electron.js",
"test-integration": "nyc --nycrc-path=.nycrc.js node npm/test-integration.js",
"test-integration-legacy": "nyc --nycrc-path=.nycrc.js node npm/test-integration-legacy.js",
"test-integration-newman": "node npm/test-integration-newman.js",
"test-lint": "node npm/test-lint.js",
"test-system": "node npm/test-system.js",
"test-unit": "nyc --nycrc-path=.nycrc.js node npm/test-unit.js"
},
"dependencies": {
"@postman/tough-cookie": "4.1.3-postman.1",
"async": "3.2.5",
"aws4": "1.13.1",
"handlebars": "4.7.8",
"httpntlm": "1.8.13",
"jose": "5.6.3",
"js-sha512": "0.9.0",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"node-forge": "1.3.1",
"node-oauth1": "1.3.0",
"performance-now": "2.1.0",
"postman-collection": "4.5.0",
"postman-request": "2.88.1-postman.40",
"postman-sandbox": "5.1.2",
"postman-url-encoder": "3.0.5",
"serialised-error": "1.1.3",
"strip-json-comments": "3.1.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@postman/shipit": "^0.4.0",
"@stylistic/eslint-plugin-js": "^1.8.0",
"ajv": "^8.17.1",
"browserify": "^17.0.0",
"chai": "^4.3.10",
"chalk": "^4.1.2",
"dependency-check": "^4.1.0",
"editorconfig": "^2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^47.0.2",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-security": "^2.1.1",
"express": "^4.17.2",
"graphql": "^15.7.2",
"js-yaml": "^4.1.0",
"karma": "^6.4.4",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"parse-gitignore": "^2.0.0",
"passport": "^0.7.0",
"passport-http": "^0.3.0",
"recursive-readdir": "^2.2.3",
"server-destroy": "^1.0.1",
"shelljs": "^0.8.5",
"sinon": "^18.0.0",
"teleport-javascript": "^1.0.0",
"terser": "^5.31.3",
"tmp": "^0.2.3",
"webpack": "^5.93.0",
"yankee": "^1.0.8"
},
"engines": {
"node": ">=16"
}
}