2021-09-24 19:29:09 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hoppscotch/js-sandbox",
|
2022-04-05 10:27:14 +00:00
|
|
|
"version": "2.1.0",
|
2021-09-24 19:29:09 +00:00
|
|
|
"description": "JavaScript sandboxes for running external scripts used by Hoppscotch clients",
|
|
|
|
|
"main": "./lib/index.js",
|
2022-03-28 08:26:15 +00:00
|
|
|
"module": "./lib/index.mjs",
|
|
|
|
|
"type": "commonjs",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"require": "./lib/index.js",
|
|
|
|
|
"default": "./lib/index.mjs"
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-09-24 19:29:09 +00:00
|
|
|
"types": "./lib/",
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=14",
|
|
|
|
|
"pnpm": ">=3"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2021-11-04 12:53:50 +00:00
|
|
|
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
|
|
|
|
|
"lintfix": "eslint --fix --ext .ts,.js --ignore-path .gitignore .",
|
2022-05-03 07:09:56 +00:00
|
|
|
"test": "pnpm exec jest",
|
|
|
|
|
"build": "pnpm exec tsup",
|
|
|
|
|
"clean": "pnpm tsc --build --clean",
|
2021-11-04 07:17:09 +00:00
|
|
|
"postinstall": "pnpm run build",
|
2021-09-25 16:57:42 +00:00
|
|
|
"prepublish": "pnpm run build",
|
2021-10-05 16:18:10 +00:00
|
|
|
"do-lint": "pnpm run lint",
|
|
|
|
|
"do-lintfix": "pnpm run lintfix",
|
2022-05-03 07:09:56 +00:00
|
|
|
"do-typecheck": "pnpm exec tsc --noEmit",
|
2021-09-25 16:57:42 +00:00
|
|
|
"do-build-prod": "pnpm run build",
|
2021-09-24 19:29:09 +00:00
|
|
|
"do-test": "pnpm run test"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"hoppscotch",
|
|
|
|
|
"sandbox",
|
|
|
|
|
"js-sandbox",
|
|
|
|
|
"apis",
|
|
|
|
|
"test-runner"
|
|
|
|
|
],
|
2021-11-21 14:17:06 +00:00
|
|
|
"author": "Hoppscotch (support@hoppscotch.io)",
|
2021-09-24 19:29:09 +00:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2022-10-03 09:21:10 +00:00
|
|
|
"@hoppscotch/data": "workspace:^0.4.4",
|
2022-04-17 17:11:00 +00:00
|
|
|
"fp-ts": "^2.11.10",
|
2021-09-24 19:29:09 +00:00
|
|
|
"lodash": "^4.17.21",
|
2022-03-28 08:26:15 +00:00
|
|
|
"quickjs-emscripten": "^0.15.0",
|
2022-04-17 17:11:00 +00:00
|
|
|
"tsup": "^5.12.5"
|
2021-09-24 19:29:09 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-01-10 04:59:31 +00:00
|
|
|
"@digitak/esrun": "^3.1.2",
|
2022-04-11 09:46:07 +00:00
|
|
|
"@relmify/jest-fp-ts": "^2.0.1",
|
2022-02-27 14:49:28 +00:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-04-04 05:24:15 +00:00
|
|
|
"@types/lodash": "^4.14.181",
|
2022-04-17 17:11:00 +00:00
|
|
|
"@types/node": "^17.0.24",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.19.0",
|
2022-04-11 09:46:07 +00:00
|
|
|
"eslint": "^8.13.0",
|
2022-03-06 15:01:03 +00:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2021-10-04 02:46:40 +00:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-09-24 19:29:09 +00:00
|
|
|
"io-ts": "^2.2.16",
|
2022-02-14 15:48:52 +00:00
|
|
|
"jest": "^27.5.1",
|
2022-04-04 05:24:15 +00:00
|
|
|
"prettier": "^2.6.2",
|
|
|
|
|
"ts-jest": "^27.1.4",
|
|
|
|
|
"typescript": "^4.6.3"
|
2021-09-24 19:29:09 +00:00
|
|
|
}
|
|
|
|
|
}
|