-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "openweathermap-ts",
"version": "1.2.10",
"description": "An abstract layer over openWeatherMap APIs",
"main": "dist/app.js",
"types": "dist/app.d.ts",
"author": "Phillip Shim",
"license": "MIT",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/shimphillip/openweathermap-ts"
},
"keywords": [
"openweathermap-ts",
"open-weather",
"openweathermap",
"weather",
"typescript",
"darkSky",
"weather-api"
],
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts --watch src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@types/node-fetch": "^2.5.7",
"coveralls": "^3.1.0",
"husky": "^4.2.5",
"jest": "^29.1.2",
"nodemon": "^2.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn build && git add ."
}
}
}