-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 859 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
{
"name": "@diff3usion/conceptualism",
"version": "0.0.2",
"description": "DSL for describing and deducing the relations of concepts",
"author": "diff3usion",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diff3usion/conceptualism.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"start": "ts-node ./src/index.ts",
"test": "mocha",
"build": "tsc",
"clean": "tsc --build --clean",
"generate": "meta-chev -i parser_definition.txt -p src/parser.ts -t src/typing.d.ts"
},
"dependencies": {
"chevrotain": "^9.0.2"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.3",
"meta-chevrotain": "^0.0.4",
"mocha": "^9.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}