-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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": "feedreader-api",
"version": "1.0.18",
"description": "This is what happens at https://api.feedreader.co",
"main": "index.js",
"bin": {
"feedreader-api": "index.js"
},
"files": [
"static",
"lib"
],
"scripts": {
"start": "node lib/index.js",
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"lint": "eslint src",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arpith/feedreader.co.git"
},
"author": "Arpith Siromoney",
"license": "MIT",
"bugs": {
"url": "https://github.com/arpith/feedreader.co/issues"
},
"homepage": "https://github.com/arpith/feedreader.co#readme",
"dependencies": {
"aws-sdk": "^2.2.33",
"bcryptjs": "^2.4.3",
"bluebird": "^3.4.6",
"body-parser": "^1.14.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"feedparser": "^1.1.4",
"opmlparser": "^0.8.0",
"querystring": "^0.2.0",
"redis": "^2.4.2",
"request": "^2.69.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.0"
}
}