2021-09-24 19:29:09 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hoppscotch/js-sandbox",
|
2022-02-18 20:50:28 +00:00
|
|
|
"version": "2.0.0",
|
2021-09-24 19:29:09 +00:00
|
|
|
"description": "JavaScript sandboxes for running external scripts used by Hoppscotch clients",
|
|
|
|
|
"main": "./lib/index.js",
|
|
|
|
|
"types": "./lib/",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=14",
|
|
|
|
|
"pnpm": ">=3"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"demo": "esrun src/demo.ts",
|
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 .",
|
2021-09-24 19:29:09 +00:00
|
|
|
"test": "npx jest",
|
|
|
|
|
"build": "npx tsc",
|
|
|
|
|
"clean": "npx 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",
|
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-01-17 13:50:30 +00:00
|
|
|
"fp-ts": "^2.11.8",
|
2021-09-24 19:29:09 +00:00
|
|
|
"lodash": "^4.17.21",
|
2022-02-18 20:50:28 +00:00
|
|
|
"quickjs-emscripten": "^0.15.0",
|
|
|
|
|
"@hoppscotch/data": "workspace:^0.4.0"
|
2021-09-24 19:29:09 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-01-10 04:59:31 +00:00
|
|
|
"@digitak/esrun": "^3.1.2",
|
2021-09-24 19:29:09 +00:00
|
|
|
"@relmify/jest-fp-ts": "^1.1.1",
|
2021-12-31 14:41:05 +00:00
|
|
|
"@types/jest": "^27.4.0",
|
2021-12-12 15:45:34 +00:00
|
|
|
"@types/lodash": "^4.14.178",
|
2022-02-17 15:33:11 +00:00
|
|
|
"@types/node": "^17.0.18",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.12.0",
|
2022-02-14 15:48:52 +00:00
|
|
|
"eslint": "^8.9.0",
|
2022-02-21 01:32:13 +00:00
|
|
|
"eslint-config-prettier": "^8.4.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",
|
2021-12-05 00:45:21 +00:00
|
|
|
"prettier": "^2.5.1",
|
2022-01-17 13:50:30 +00:00
|
|
|
"ts-jest": "^27.1.3",
|
2022-01-24 00:14:10 +00:00
|
|
|
"typescript": "^4.5.5"
|
2021-09-24 19:29:09 +00:00
|
|
|
}
|
|
|
|
|
}
|