-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 747 Bytes
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
{
"name": "interpreter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "npx tsc",
"start": "node build/main.js"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.9",
"@types/prompt-sync": "^4.2.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@hpcc-js/wasm": "^2.16.2",
"fs": "^0.0.1-security",
"prompt-sync": "^4.2.0"
}
}