-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.1 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
{
"name": "unread",
"version": "0.0.0-semantically-released",
"description": "A package for parsing RSS and Atom feeds",
"keywords": [
"atom",
"feed",
"json",
"rss",
"syndication",
"xml"
],
"repository": "z0al/unread",
"license": "MIT",
"author": "Ahmed T. Ali",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/unread.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf -rf ./dist && tsdx build",
"prepublishOnly": "npm run build",
"test": "tsdx test"
},
"dependencies": {
"saxes": "^6.0.0"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"glob": "^7.1.7",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.4",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"prettier": {
"printWidth": 72,
"semi": true,
"singleQuote": true,
"useTabs": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release": {
"branches": [
"main"
]
}
}