-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "covidjs",
"version": "1.0.0",
"description": "A library that abstracts away the process of interfacing with the VacFind Vaccine Availability API",
"main": "src/index.ts",
"repository": "https://github.com/VacFind/APIClientLib",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/vacfind"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"husky": "^4.3.8",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.5",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"asyncairtable": "^2.2.0-0"
},
"scripts": {
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"lint:fix": "tslint --fix -c tslint.json \"src/**/*.ts\"",
"build": "webpack --mode development",
"release": "webpack --mode production"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix",
"pre-push": "npm run lint:fix"
}
}
}