-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
104 lines (104 loc) · 3.11 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
{
"name": "postman-sandbox",
"version": "5.1.2",
"description": "Sandbox for Postman Scripts to run in Node.js or browser",
"author": "Postman Inc.",
"license": "Apache-2.0",
"main": "index.js",
"browser": {
"./lib/bundle/index.js": "./lib/bundle/index.browser.js",
"./.cache/bootcode.js": "./.cache/bootcode.browser.js"
},
"homepage": "https://github.com/postmanlabs/postman-sandbox#readme",
"bugs": {
"url": "https://github.com/postmanlabs/postman-sandbox/issues",
"email": "help@postman.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postmanlabs/postman-sandbox.git"
},
"keywords": [
"contextify",
"postman",
"sandbox",
"vm"
],
"scripts": {
"build-common-types": "node npm/build-types.js",
"build-sandbox-types": "node npm/build-sandbox-types.js",
"build-types": "npm run build-common-types && npm run build-sandbox-types",
"cache": "node npm/cache.js $1",
"codecov": "node npm/publish-coverage.js",
"prepublishOnly": "node npm/prepublish.js",
"pretest": "npm run cache",
"release": "node npm/create-release.js",
"test": "npm run test-lint && npm run test-system && npm run test-unit && npm run test-vm && npm run test-integration && npm run test-browser",
"test-browser": "node npm/test-browser.js",
"test-integration": "node npm/test-integration.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",
"test-vm": "node npm/test-vm.js"
},
"dependencies": {
"lodash": "4.17.21",
"postman-collection": "4.5.0",
"teleport-javascript": "1.0.0",
"uvm": "4.0.0"
},
"devDependencies": {
"@postman/shipit": "^0.4.0",
"@postman/tough-cookie": "4.1.3-postman.1",
"@stylistic/eslint-plugin-js": "^1.8.0",
"ajv": "6.12.5",
"assert": "2.0.0",
"async": "^3.2.6",
"atob": "2.1.2",
"backbone": "1.6.0",
"browserify": "^16.5.2",
"btoa": "1.2.1",
"buffer": "6.0.3",
"chai": "4.4.1",
"chai-postman": "2.0.1",
"chalk": "^4.1.2",
"cheerio": "0.22.0",
"crypto-js": "3.3.0",
"csv-parse": "1.2.4",
"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",
"jquery": "^3.7.1",
"js-yaml": "^4.1.0",
"jsdoc": "^3.6.10",
"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",
"liquid-json": "0.3.1",
"lodash3": "3.10.2",
"mocha": "^10.7.3",
"moment": "2.30.1",
"nyc": "^15.1.0",
"packity": "^0.3.5",
"parse-gitignore": "^2.0.0",
"recursive-readdir": "^2.2.3",
"shelljs": "^0.8.5",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"terser": "^5.33.0",
"tsd-jsdoc": "^2.5.0",
"tv4": "1.3.0",
"uniscope": "3.0.0",
"watchify": "^4.0.0",
"xml2js": "0.6.2"
},
"engines": {
"node": ">=18"
}
}