-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 839 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
{
"name": "forge-expr-evaluator",
"version": "1.0.2",
"description": "\"Typescript evaluator for Forge expressions\"",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"test": "jest",
"antlr4ts": "cd src/forge-antlr && antlr4ts -visitor ForgeLexer.g4 Forge.g4 && cd ../.."
},
"author": "Karan Kashyap",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"antlr4ts-cli": "^0.5.0-alpha.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.2"
},
"dependencies": {
"@types/lodash": "^4.17.16",
"@types/node": "^22.14.0",
"antlr4ts": "^0.5.0-alpha.4",
"entities": "^6.0.0",
"lodash": "^4.17.21"
}
}