-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1005 Bytes
/
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
{
"name": "lr1-parser-vis",
"version": "0.0.0",
"description": "Create LR(1) parsers in your browser and see how they work.",
"scripts": {
"start": "parcel serve ./src/index.html",
"prebuild": "rimraf ./dist",
"build": "parcel build --public-url 'https://soroushj.github.io/lr1-parser-vis/' --dist-dir ./dist ./src/index.html"
},
"browserslist": [
"defaults"
],
"repository": {
"type": "git",
"url": "git+https://github.com/soroushj/lr1-parser-vis.git"
},
"keywords": [
"parser",
"lr-parser",
"canonical-lr-parser"
],
"author": "Soroush Javadi <[email protected]> (https://github.com/soroushj)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soroushj/lr1-parser-vis/issues"
},
"homepage": "https://github.com/soroushj/lr1-parser-vis#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.12.0",
"parcel": "^2.12.0",
"rimraf": "^5.0.9"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}