-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 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
{
"name": "feederjs",
"version": "1.0.3",
"description": "An RSS/Atom feed parser that converts RSS and Atom Feeds to a single object type.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"jsdoc": "./node_modules/.bin/jsdoc ./src/index.js"
},
"keywords": [
"rss",
"atom",
"feed"
],
"author": "somners",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/somners/feeder.git"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"requizzle": "^0.2.1",
"sax": "^1.2.2"
},
"dependencies": {
"sax": "^1.2.2"
}
}