-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "heta-compiler",
"version": "0.9.2",
"description": "Programming platform for Quantitative Systems Pharmacology modeling in NodeJS",
"main": "src/index.js",
"scripts": {
"test:dev": "mocha test/filepaths --config=./test/.mocharc.json",
"test": "mocha test --config=./test/.mocharc.json",
"jsdoc": "jsdoc -r -c .jsdoc.json --readme api-references.md -d docs/dev src",
"test:cov": "nyc --reporter=lcov npm run test",
"precompile": "nunjucks-precompile --include [\"\\.hjk$\"] src/templates > compiled-templates.js",
"pkg": "npx pkg . --compress GZip"
},
"repository": {
"type": "git",
"url": "https://github.com/hetalang/heta-compiler.git"
},
"homepage": "https://hetalang.github.io/#/heta-compiler/",
"bugs": {
"url": "https://github.com/hetalang/heta-compiler/issues",
"email": "[email protected]"
},
"author": "Evgeny Metelkin <[email protected]> (https://github.com/metelkin)",
"license": "Apache-2.0",
"bin": {
"heta": "bin/heta.js",
"heta-build": "bin/heta-build.js",
"heta-init": "bin/heta-init.js"
},
"dependencies": {
"@insysbio/topo-sort": "^1.0.1",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"colors": "^1.4.0",
"commander": "^12.1.0",
"entities": "^5.0.0",
"fs-extra": "^11.2.0",
"heta-parser": "^0.4.2",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"mathjs": "^11.12.0",
"mathjs-mathml": "^0.3.3",
"node-fetch": "^2.7.0",
"nunjucks": "^3.2.4",
"random-id": "^1.0.4",
"semver": "^7.6.3",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
"xml-js": "^1.6.11"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-xml": "^0.4.1",
"eslint": "^8.57.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
"jsdoc": "^4.0.4",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"pkg": "^5.8.1",
"slv-utils": "^0.5.1"
},
"engines": {
"node": ">=14.0.0"
},
"pkg": {
"scripts": [
"bin/heta-build.js",
"bin/heta-init.js"
],
"targets": [
"node16-win-x64",
"node16-linux-x64",
"node16-macos-x64"
],
"assets": [
"src/templates/*"
],
"outputPath": "dist"
},
"private": false
}