-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 849 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 849 Bytes
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
{
"name": "parserss",
"version": "0.2.0",
"description": "Small RSS Parser",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/gulp",
"test": "./node_modules/.bin/gulp test"
},
"keywords": [
"rss",
"parse",
"parser"
],
"author": "Jose Luis Rivas <me@ghostbar.co>",
"license": "MIT",
"dependencies": {
"feedparser": "~0.16.6",
"request": "~2.36.0"
},
"devDependencies": {
"gulp": "^3.8.6",
"gulp-docco": "0.0.4",
"gulp-mocha": "^0.5.1",
"gulp-rimraf": "^0.1.0",
"gulp-subtree": "^0.1.0",
"mocha": "~1.17.1",
"should": "~3.1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/ghostbar/parserss.git"
},
"bugs": {
"url": "https://github.com/ghostbar/parserss/issues"
},
"homepage": "https://github.com/ghostbar/parserss"
}