-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ncalcjs",
"version": "2.1.1",
"description": "Typescript/Javascript implementation of NCalc",
"main": "dist/ncalc.node.js",
"browser": "dist/ncalc.web.js",
"types": "dist/NCalc/index.d.ts",
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"grammar": "antlr4 -Dlanguage=TypeScript -visitor src/Grammar/NCalc.g4 -o src/Grammar",
"prepare": "ts-patch install -s",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThomasHambach/NcalcJS.git"
},
"keywords": [
"ncalc",
"expression",
"parser"
],
"author": "Thomas Hambach",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThomasHambach/NcalcJS/issues"
},
"homepage": "https://github.com/ThomasHambach/NcalcJS#readme",
"dependencies": {
"antlr4": "4.12.0",
"dayjs": "^1.11.7"
},
"devDependencies": {
"@types/antlr4": "^4.11.2",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"dpdm": "^3.11.0",
"eslint": "^8.35.0",
"eslint-webpack-plugin": "^4.0.0",
"jest": "^29.3.1",
"jest-expect-message": "^1.1.3",
"madge": "^5.0.1",
"npkill": "^0.10.0",
"prettier": "^2.8.3",
"skott": "^0.14.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"ts-patch": "^2.1.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.4",
"typescript-transform-paths": "^3.4.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}