-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "uniscope",
"version": "3.0.0",
"description": "Allows one to evaluate a code within a controlled environment",
"author": "Postman Inc.",
"license": "Apache-2.0",
"main": "index.js",
"homepage": "https://github.com/postmanlabs/uniscope#readme",
"bugs": {
"url": "https://github.com/postmanlabs/uniscope/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postmanlabs/uniscope.git"
},
"keywords": [
"eval",
"scope",
"postman"
],
"scripts": {
"codecov": "node npm/publish-coverage.js",
"build-docs": "node npm/build-docs.js",
"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-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"
},
"devDependencies": {
"@postman/shipit": "^0.4.0",
"@stylistic/eslint-plugin-js": "^1.8.0",
"browserify": "^17.0.0",
"chai": "^4.4.1",
"chalk": "^4.1.2",
"editorconfig": "^2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^47.0.2",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-security": "^2.1.1",
"js-yaml": "^4.1.0",
"jsdoc": "^4.0.3",
"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": "^10.7.3",
"nyc": "^15.1.0",
"packity": "^0.3.5",
"parse-gitignore": "^2.0.0",
"postman-jsdoc-theme": "^0.0.3",
"recursive-readdir": "^2.2.3",
"watchify": "^4.0.0"
},
"engines": {
"node": ">=18"
}
}