-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "heta-parser",
"version": "0.4.2",
"description": "Parsing of Heta-language files.",
"main": "src/index.js",
"bin": {
"heta": "./bin/heta.js",
"heta-run": "./bin/heta-run.js"
},
"scripts": {
"test": "npm run generate && mocha test --recursive",
"test:dev": "npm run generate && mocha ./test/syntax",
"test:cov": "nyc --reporter=lcov npm run test",
"test:bin": "npm run generate && node bin/heta.js run test/parse/input/include.heta",
"generate": "pegjs -o src/index.js src/pegjs/heta.pegjs"
},
"repository": {
"type": "git",
"url": "https://github.com/hetalang/heta-parser.git"
},
"keywords": [
"heta",
"parser",
"modeling",
"qsp",
"systems-biology"
],
"contributors": [
"Evgeny Metelkin <[email protected]> (https://github.com/metelkin)",
"Victoria Tkachenko (https://github.com/vetedde)"
],
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.3.10",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"commander": "^11.1.0",
"pegjs": "^0.10.0"
},
"engines": {
"node": ">=12.0.0"
}
}