-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 999 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
{
"name": "@bvk/lsystem",
"version": "0.0.131",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build-grammar": "cd src/grammars/ && nearleyc axiom.ne -o axiom.ts && nearleyc predecessor.ne -o predecessor.ts && nearleyc successor.ne -o successor.ts && nearleyc production.ne -o production.ts",
"start-parser": "ts-node examples/parserOutputs.ts ",
"start-lsystem": "ts-node examples/lSystemOutputs.ts",
"start-nearley": "ts-node examples/grammarOutputs.ts",
"watch": "tsc -p tsconfig.global.json -w",
"build": "npm run build-grammar && tsc -p tsconfig.global.json",
"test": "jest test"
},
"author": "Bhavik Singh",
"license": "MIT License",
"devDependencies": {
"@types/nearley": "^2.11.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.0.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"@types/jest": "^26.0.15",
"nearley": "^2.20.1"
}
}