-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
62
63
64
65
66
{
"name": "@jlguenego/syntax-analysis",
"version": "1.6.4",
"description": "Syntax analysis. Lot of different methods.",
"main": "./build/src/index.js",
"module": "build_esm/src/index.js",
"private": false,
"scripts": {
"test": "nyc mocha",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"compile:esm": "tsc --project tsconfig.esm.json",
"fix": "gts fix",
"prepare": "npm.cmd run compile",
"pretest": "npm.cmd run compile",
"posttest": "npm.cmd run lint",
"prerelease": "npm run compile && npm run compile:esm",
"release": "standard-version",
"json": "ts-node example/json/json.ts"
},
"keywords": [
"syntax analysis",
"parser",
"parse-tree",
"compiler",
"bfs",
"dfs",
"ll",
"lr",
"lalr",
"slr",
"lr(0)",
"lr(1)",
"lr(k)"
],
"author": "Jean-Louis GUENEGO <jlguenego@gmail.com>",
"license": "ISC",
"devDependencies": {
"@jlguenego/lexer": "^1.5.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.11.2",
"gts": "^3.0.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/jlguenego/syntax-analysis.git"
},
"bugs": {
"url": "https://github.com/jlguenego/syntax-analysis/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/jlguenego"
},
"dependencies": {
"@jlguenego/language": "^1.2.0",
"@jlguenego/tree": "^1.9.0",
"rxjs": "^6.6.3"
}
}