-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
85 lines (85 loc) · 1.9 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rss",
"version": "1.2.2",
"description": "RSS feed generator. Add RSS feeds to any project. Supports enclosures and GeoRSS.",
"keywords": [
"rss",
"xml",
"atom",
"podcasts",
"ghost",
"feed",
"feed builder",
"rss feed"
],
"main": "lib/index",
"scripts": {
"test": "tape test --tap | tap-difflet",
"lint": "grunt lint",
"test:browser": "testling -u"
},
"homepage": "http://github.com/dylang/node-rss",
"author": {
"name": "Dylan Greene",
"email": "[email protected]"
},
"contributors": [
"Dylan Greene <[email protected]>",
"Xavier Damman <[email protected]>",
"Michael R. Lange",
"Victor Jonsson",
"Danny Graham",
"Patrick Garman <[email protected]>",
"Fred Morstatter",
"Eric Vantillard <[email protected]>",
"Jason Karns <jasonkarns>",
"Hannah Wolfe <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/dylang/node-rss.git"
},
"bugs": {
"url": "http://github.com/dylang/node-rss/issues"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"chrome/latest",
"firefox/latest",
"safari/latest",
"opera/latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
},
"dependencies": {
"mime-types": "2.1.35",
"xml": "1.0.1"
},
"devDependencies": {
"folderify": "1.2.1",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-contrib-jshint": "3.2.0",
"grunt-release": "0.14.0",
"grunt-templates-dylang": "1.0.12",
"include-folder": "1.0.0",
"load-grunt-tasks": "5.1.0",
"mockdate": "3.0.5",
"q": "1.5.1",
"tap-difflet": "0.7.2",
"tape": "5.9.0",
"testling": "1.7.7",
"time-grunt": "2.0.0",
"xml2js": "0.6.2"
},
"browserify": {
"transform": [
"folderify"
]
},
"license": "MIT"
}