-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "@publichealthengland/uk-covid19",
"version": "1.2.5",
"description": "This is a JavaScript SDK for the COVID-19 API, as published by Public Health England on Coronavirus (COVID-19) in the UK dashboard.",
"main": "dist/lib/index.js",
"types": "dist/lib/UKCovid19.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/publichealthengland/coronavirus-dashboard-api-javascript-sdk.git"
},
"author": {
"name": "Public Health England",
"email": "covid19-tech@phe.gov.uk",
"url": "https://coronavirus.data.gov.uk/"
},
"maintainers": [
"Pouria Hadjibagheri <Pouria.Hadjibagheri@phe.gov.uk>",
"Brogan Goble <Brogan.Goble@phe.gov.uk>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/publichealthengland/coronavirus-dashboard-api-javascript-sdk/issues"
},
"homepage": "https://github.com/publichealthengland/coronavirus-dashboard-api-javascript-sdk",
"keywords": [
"api-service",
"coronavirus",
"covid19",
"covid19-data",
"covid19-uk",
"govuk-service"
],
"dependencies": {
"axios": "^0.19.2",
"moment": "^2.27.0"
},
"devDependencies": {
"@types/assert": "^1.5.1",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.1",
"@types/moment": "^2.13.0",
"assert": "^2.0.0",
"chai": "^4.2.0",
"mocha": "^8.1.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts --timeout 10000",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"build": "tsc",
"format": "prettier --write \\\\\\\"lib/**/*.ts\\\\\\\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm run test",
"prepare": "npm run build"
}
}