-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.81 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
62
63
64
{
"name": "@pagasa-parser/source-pdf",
"version": "1.1.9",
"description": "Allows parsing of PAGASA TCB PDF files into pagasa-parser Bulletins.",
"main": "build/PagasaParserPDFSource.js",
"types": "build/PagasaParserPDFSource.d.ts",
"files": [
"bin",
"build",
"LICENSE",
"package.json",
"package-lock.json",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "npm run coverage:full",
"coverage:full": "jest --coverage --collectCoverageFrom=src/**/*.{js,jsx,ts,tsx}",
"coverage:minimal": "jest --coverage",
"prepack": "npm run clean && npm run build",
"clean": "rimraf build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagasa-parser/source-xml.git"
},
"keywords": [
"scraper",
"weather",
"json",
"philippines",
"typhoon"
],
"author": "Chlod Alejandro <chlod@chlod.net> (https://chlod.net)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pagasa-parser/source-xml/issues"
},
"homepage": "https://github.com/pagasa-parser/source-xml#readme",
"engines": {
"node": ">=13"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/jest": "^27.0.1",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"eslint": "^7.12.1",
"husky": "^7.0.4",
"jest": "^27.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"pagasa-parser": "^2.2.4"
},
"dependencies": {
"axios": "^0.23.0"
}
}