-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.81 KB
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
{
"name": "@pagasa-parser/formatter-wikipedia",
"version": "1.1.0",
"description": "Creates a TyphoonWarningsTable based on a pagasa-parser Bulletin.",
"main": "build/PagasaParserWikipediaFormatter.js",
"types": "build/PagasaParserWikipediaFormatter.d.ts",
"files": [
"build",
"CONTRIBUTING.md",
"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/ChlodAlejandro/PAGASA-parser.git"
},
"keywords": [
"weather",
"json",
"philippines",
"typhoon",
"wikipedia"
],
"author": "Chlod Alejandro <chlod@chlod.net> (https://chlod.net)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pagasa-parser/formatter-wikipedia/issues"
},
"homepage": "https://github.com/pagasa-parser/formatter-wikipedia#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"cat": "^0.2.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.3"
},
"dependencies": {
"axios": "^0.21.4"
}
}