-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.94 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-xml",
"version": "1.0.1",
"description": "Allows parsing of specifically-made XML files into pagasa-parser Bulletins.",
"main": "build/PagasaParserXMLSource.js",
"types": "build/PagasaParserXMLSource.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",
"reignore": "cat .gitignore > .npmignore && cat .gitignore.npmignore >> .npmignore",
"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 <[email protected]> (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",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"libxmljs2-xsd": "^0.28.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@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.0.5"
}
}