-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.48 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
{
"name": "@discue/somewhat-secure-insecure-fn-executor",
"version": "0.4.1",
"description": "Tries to isolate execution of untrusted code",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"LICENSE"
],
"scripts": {
"test": "mocha --recursive --check-leaks --timeout 5000 --file test/global-mocha-setup.js",
"coverage": "nyc mocha --check-leaks --timeout 5000 --file test/global-mocha-setup.js",
"lint": "eslint -c .eslintrc.js lib",
"push-incl-tags": "git push --follow-tags origin main",
"publish-npm": "npm publish --access public",
"remove-types": "find lib -name \"*.d.ts\" -type f -delete",
"create-types": "npx tsc lib/index.js --declaration --emitDeclarationOnly --allowJs --lib es2022",
"release-generic": "npm run push-incl-tags && npm run create-types && npm run publish-npm && npm run remove-types",
"release": "standard-version && npm run release-generic",
"release-minor": "standard-version --release-as minor && npm run release-generic"
},
"keywords": [
"discue",
"untrusted code",
"untrusted",
"isolated",
"vm"
],
"author": "Stefan Pfaffel <s.pfaffel@gmail.com>",
"license": "MIT",
"dependencies": {
"isolated-vm": "^5.0.3"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^9.17.0",
"eslint-plugin-jsdoc": "^50.6.1",
"mocha": "^11.0.1",
"nodemon": "^3.1.9",
"nyc": "^17.1.0",
"standard-version": "^9.5.0",
"typescript": "^5.7.2"
}
}