Files
hoppscotch/packages/hoppscotch-js-sandbox/package.json
2021-09-26 19:16:23 +05:30

61 lines
1.5 KiB
JSON

{
"name": "@hoppscotch/js-sandbox",
"version": "1.0.0",
"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",
"lint": "eslint --ext .ts,.js --ignore-path .gitignore",
"test": "npx jest",
"build": "npx tsc",
"clean": "npx tsc --build --clean",
"prepublish": "pnpm run build",
"do-lintfix": "pnpm run lint",
"do-build-prod": "pnpm run build",
"do-test": "pnpm run test"
},
"keywords": [
"hoppscotch",
"sandbox",
"js-sandbox",
"apis",
"test-runner"
],
"author": "The Hoppscotch Team <support@hoppscotch.io> (https://hoppscotch.com/)",
"license": "MIT",
"dependencies": {
"fp-ts": "^2.11.3",
"lodash": "^4.17.21",
"quickjs-emscripten": "^0.13.0"
},
"devDependencies": {
"@digitak/esrun": "^1.2.7",
"@relmify/jest-fp-ts": "^1.1.1",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.174",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"io-ts": "^2.2.16",
"jest": "^27.2.2",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"jest": {
"setupFilesAfterEnv": [
"@relmify/jest-fp-ts"
]
}
}