forked from sdepold/feedrapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 KB
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
{
"name": "feedrapp",
"version": "1.5.1",
"description": "A service for parsing RSS and Atom feeds.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --fix ./src/**/*.js ./test/**/*.js",
"start": "node ./bin/www",
"start:test": "node ./bin/www-test",
"test": "yarn lint && yarn test:unit && yarn test:integration",
"test:integration": "mocha test/integration/**/*.spec.js",
"test:unit": "mocha test/unit/**/*.spec.js",
"test:coverage": "nyc yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/sdepold/feedrapp.git"
},
"keywords": [
"rss",
"atom",
"parser",
"service",
"feed"
],
"author": "Sascha Depold <sascha@depold.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdepold/feedrapp/issues"
},
"homepage": "https://github.com/sdepold/feedrapp",
"devDependencies": {
"chai": "^3.5.0",
"cheerio": "^1.0.0-rc.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.1.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.5.0",
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.0",
"express": "~4.14.1",
"fast-feed": "^1.5.5",
"jade": "~1.11.0",
"less-middleware": "~2.2.0",
"lodash": "^4.17.4",
"memory-cache": "^0.1.6",
"morgan": "~1.7.0",
"nyc": "^11.0.2",
"pug": "~2.0.0-beta10",
"serve-favicon": "~2.3.2",
"universal-analytics": "^0.4.13"
},
"engines": {
"node": "~6.10.0"
}
}