-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 923 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
35
36
37
38
39
40
41
{
"name": "seir",
"version": "1.0.2",
"description": "SEIR Model used in Epidemiology",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paul-em/seir.git"
},
"keywords": [
"SEIR",
"Epidemiology",
"COVID",
"Corona",
"Virus"
],
"author": "Paul Em",
"license": "ISC",
"bugs": {
"url": "https://github.com/paul-em/seir/issues"
},
"homepage": "https://github.com/paul-em/seir#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}