forked from Hadron67/tscc-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 839 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 839 Bytes
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
{
"name": "tscc-compiler",
"version": "1.1.1",
"description": "An LALR(1) compiler compiler written in Typescript",
"main": "lib/tscc.js",
"bin": "bin/tscc",
"directories": {
"test": "tests",
"bin": "bin",
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c"
},
"keywords": [
"tscc",
"LALR(1)",
"compiler compiler",
"parser",
"compiler",
"Hanolee algorithm"
],
"author": "hadroncfy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Hadron67/tscc-compiler.git"
},
"dependencies": {
"bluebird": "^3.3.1"
},
"devDependencies": {
"rollup": "^0.53.3",
"typescript": "^2.6",
"rollup-plugin-typescript2": "^0.8.4",
"rollup-plugin-sourcemaps": "^0.4.2"
}
}