forked from jpmonette/feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.25 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
{
"name": "feed",
"version": "4.2.1",
"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": "rimraf lib/ && mkdir lib && tsc",
"prepublish": "npm run build",
"test": "export NODE_ENV=test && jest --silent",
"test-travis": "export NODE_ENV=test && jest --coverage"
},
"keywords": [
"rss",
"atom",
"feed",
"syndication",
"xml",
"wrapper",
"blog"
],
"dependencies": {
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.0",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"source-map-loader": "^1.1.1",
"ts-jest": "^26.4.1",
"tslint": "^6.1.2",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=0.4.0"
},
"bugs": {
"url": "https://github.com/jpmonette/feed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jpmonette/feed.git"
}
}