forked from jpmonette/feed
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·52 lines (52 loc) · 1.33 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
{
"name": "feed",
"version": "2.0.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",
"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": "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": {
"luxon": "^1.3.3",
"xml": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/xml": "^1.0.2",
"awesome-typescript-loader": "^5.2.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^2.13.1",
"jest": "^23.4.2",
"prettier": "^1.14.0",
"source-map-loader": "^0.2.3",
"ts-jest": "^23.1.2",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"engines": {
"node": ">=0.4.0"
},
"bugs": {
"url": "https://github.com/jpmonette/feed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jpmonette/feed.git"
}
}