forked from jpmonette/feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "feed",
"version": "4.2.2",
"description": "Feed is a RSS, Atom and JSON feed generator for Node.js, making content syndication simple and intuitive!",
"homepage": "https://github.com/jpmonette/feed",
"author": "Jean-Philippe Monette <[email protected]>",
"license": "MIT",
"main": "lib/feed.js",
"types": "lib/feed.d.ts",
"scripts": {
"build": "rm -rf lib/ && mkdir lib && tsc",
"prepublish": "yarn build",
"test": "jest --silent",
"test-travis": "jest --coverage"
},
"keywords": [
"rss",
"atom",
"feed",
"syndication",
"xml",
"wrapper",
"blog"
],
"dependencies": {
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.1",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"source-map-loader": "^3.0.1",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=0.4.0"
},
"bugs": {
"url": "https://github.com/jpmonette/feed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jpmonette/feed.git"
},
"packageManager": "[email protected]"
}