-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "js-interpreter",
"version": "1.0.0",
"description": "JavaScript interpreter with step execution API",
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"start": "node src/index.js",
"build:web": "esbuild src/interpreter/debugger.js --bundle --format=esm --outfile=web/interpreter.bundle.js",
"dev:web": "esbuild src/interpreter/debugger.js --bundle --format=esm --outfile=web/interpreter.bundle.js --servedir=web --watch"
},
"devDependencies": {
"esbuild": "^0.21.0",
"jest": "^29.0.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": ["**/*.test.js"]
}
}