-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.99 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
65
66
67
68
69
70
{
"name": "@pagasa-parser/formatter-signals",
"version": "0.1.2",
"description": "Generates storm signal images from PAGASA Parser bulletins.",
"main": "build/PagasaParserFormatterSignals.js",
"types": "build/PagasaParserFormatterSignals.d.ts",
"files": [
"assets",
"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/template.git"
},
"keywords": [
"scraper",
"weather",
"json",
"philippines",
"typhoon"
],
"author": "Chlod Alejandro <[email protected]> (https://chlod.net)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pagasa-parser/template/issues"
},
"homepage": "https://github.com/pagasa-parser/template#readme",
"engines": {
"node": ">=13"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/jest": "^27.0.1",
"@types/svg-path-parser": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"axios": "^0.26.0",
"eslint": "^7.12.1",
"fs-jetpack": "^4.3.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.1.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"scale-that-svg": "^1.0.5",
"svg-path-parser": "^1.1.0",
"svgpath": "^2.5.0"
}
}