-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "dt-python-parser",
"version": "0.9.0",
"description": "There are some python parsers built with antlr4, and it's mainly for the **BigData** domain.",
"main": "dist/index.js",
"scripts": {
"antlr4": "node build/antlr4.js",
"build": "npm test && rm -rf dist && tsc",
"lint": "eslint ./src/**/*.ts",
"lint-fix": "npx eslint './src/**/*.ts' --fix",
"check-types": "tsc --skipLibCheck",
"test": "jest --coverage"
},
"git repository": "https://github.com/DTStack/dt-python-parser",
"repository": "https://github.com/DTStack/dt-python-parser",
"keywords": [
"python",
"parser",
"monaco-editor",
"bigdata",
"antlr4"
],
"author": "[email protected]",
"license": "MIT",
"husky": {
"hooks": {
"lint-staged": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/antlr4": "4.7.2",
"antlr4": "4.8.0"
}
}