-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "pagasa-archiver",
"version": "1.5.0",
"description": "CLI tool for archiving PAGASA bulletins",
"main": "build/PagasaArchiver.js",
"bin": "bin/pagasa-archiver",
"scripts": {
"build": "tsc",
"prepack": "npm run clean && npm run build",
"clean": "rimraf build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagasa-parser/pagasa-archiver.git"
},
"keywords": [
"pagasa",
"weather",
"typhoon",
"cyclone",
"philippines"
],
"author": "Chlod Alejandro <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pagasa-parser/pagasa-archiver/issues"
},
"homepage": "https://github.com/pagasa-parser/pagasa-archiver#readme",
"devDependencies": {
"@types/bunyan": "^1.8.7",
"@types/bunyan-format": "^0.2.4",
"@types/node": "^16.9.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"cat": "^0.2.0",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"files": [
"bin",
"build",
"LICENSE",
"README.md"
],
"dependencies": {
"axios": "^1.7.7",
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"yargs": "^17.2.1"
}
}