-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.45 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": "openweathermap-api-client",
"version": "1.0.3",
"description": "Promise based API client for getting weather data and forecasts from openweathermap.org",
"author": "Torkild Dyvik Olsen",
"license": "MIT",
"homepage": "https://github.com/tdolsen/openweathermap-api-client",
"repository": "git@github.com:tdolsen/openweathermap-api-client.git",
"bugs": "https://github.com/tdolsen/openweathermap-api-client/issues",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "del dist",
"compile": "tsc",
"lint:format:fix": "prettier --write",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"prerelease": "pkg-ok",
"release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"dependencies": {
"axios": "^0.21.1",
"query-string": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/prompt": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.1",
"@types/query-string": "^6.3.0",
"commitizen": "^4.2.3",
"del": "^6.0.0",
"del-cli": "^3.0.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"pkg-ok": "^2.3.1",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"travis-deploy-once": "^5.0.11",
"typescript": "^4.2.4"
}
}