-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "@epispot/epijs",
"version": "3.0.0-alpha.3",
"description": "A disease modeling package.",
"main": "EpiJS/index.js",
"scripts": {
"test": "mocha tests --exit",
"docs:dev": "node scripts/docs.js && vuepress dev docs",
"docs:build": "node scripts/docs.js && vuepress build docs",
"build": "bash scripts/min.sh",
"docs:host": "vuepress dev docs",
"coverage": "nyc mocha tests --exit --timeout=60000",
"report": "nyc mocha tests --exit --timeout=60000 && nyc report --reporter=lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epispot/EpiJS.git"
},
"keywords": [
"disease modeling",
"epidemiology",
"disease modelling"
],
"author": "epispot (@epispot)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/epispot/epijs/issues"
},
"homepage": "epi.js.org",
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.9.7",
"@vuepress/plugin-nprogress": "^1.9.7",
"browserify": "~17.0.0",
"codecov": "^3.8.3",
"jsdoc-to-markdown": "^8.0.0",
"lru-cache": "^10.0.0",
"mocha": "~10.2.0",
"nyc": "^15.1.0",
"puppeteer": "~20.7.2",
"terser": "~5.18.1",
"vue-tabs-component": "^1.5.0",
"vuepress": "^1.9.7",
"vuepress-plugin-tabs": "^0.3.0",
"vuepress-theme-vt": "^0.13.2"
},
"dependencies": {
"gaussian": "~1.3.0",
"mathjs": "~11.8.0",
"plotly.js-dist-min": "^2.8.3"
}
}