-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.38 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.38 KB
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
{
"name": "script-parser",
"version": "0.0.76",
"description": "",
"main": "dist/index.js",
"scripts": {
"buildJison": "ts-jison -t typescript -n TsCalc -n TsCalc -o ./src/jison/scripts.ts ./src/jison/scripts.jison",
"buildActions": "ts-node-esm ./src/actions/converter.ts",
"build": "pnpm run buildActions && pnpm run buildJison && npx tsc -p tsconfig.json",
"test": "jest",
"removeTypes": "ts-node-esm ./src/jison/removeTypes.ts",
"bump": "npx auto-version --patch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"auto-version-js": "^0.3.10",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "*"
},
"dependencies": {
"@ts-jison/lexer": "0.4.1-alpha.1",
"@ts-jison/parser": "0.4.1-alpha.1",
"@ts-jison/parser-generator": "0.4.1-alpha.2",
"@types/jsonfile": "^6.1.2",
"axios": "^1.6.0",
"jsonfile": "^6.1.0"
}
}