-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 1.02 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
{
"name": "ml-bug-detector",
"version": "1.0.0",
"scripts": {
"high-memory-tokenize": "node --max_old_space_size=8192 -r ts-node/register scripts-parser/parser.ts tokenization",
"tokenize": "ts-node scripts-parser/parser.ts tokenization",
"ast-function-arguments": "ts-node scripts-parser/parser.ts ast-function-arguments",
"high-memory-ast-function-arguments": "node --max_old_space_size=8192 -r ts-node/register scripts-parser/parser.ts ast-function-arguments",
"debug": "ts-node scripts-parser/parser.ts debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nsbarsukov/ml-bug-detector.git"
},
"author": "Barsukov Nikita",
"license": "ISC",
"bugs": {
"url": "https://github.com/nsbarsukov/ml-bug-detector/issues"
},
"homepage": "https://github.com/nsbarsukov/ml-bug-detector#readme",
"devDependencies": {
"typescript": "3.9.2"
},
"dependencies": {
"@types/esprima": "4.0.2",
"@types/node": "14.0.1",
"esprima": "4.0.1",
"ts-node": "8.10.1"
}
}