forked from filipedeschamps/rss-feed-emitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.82 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
{
"name": "funsociety-irc-rss-feed-emitter",
"version": "1.0.13",
"description": "Super RSS News Feed aggregator written in Node.js and ES6",
"main": "dist/rss-feed-emitter.js",
"scripts": {
"coverage": "babel-node node_modules/.bin/babel-istanbul cover _mocha -- --timeout 30000 test/**/*.spec.js",
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"test": "npm run coverage",
"test-unit": "mocha --compilers js:babel-core/register test/unit/**/*.spec.js",
"test-integration": "mocha --timeout 30000 --compilers js:babel-core/register test/integration/**/*.spec.js",
"test-unit-watch": "mocha --watch --compilers js:babel-core/register test/unit/**/*.spec.js",
"test-integration-watch": "mocha --watch --timeout 30000 --compilers js:babel-core/register test/integration/**/*.spec.js",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filipedeschamps/rss-feed-emitter.git"
},
"keywords": [
"rss",
"feed",
"emitter",
"aggregator",
"news",
"atom"
],
"author": "Filipe Deschamps",
"license": "MIT",
"bugs": {
"url": "https://github.com/filipedeschamps/rss-feed-emitter/issues"
},
"homepage": "https://github.com/filipedeschamps/rss-feed-emitter#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.1",
"babel-istanbul": "^0.12.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"eslint": "^4.3.0",
"eslint-plugin-babel": "^4.1.1",
"mocha": "^5.0.0",
"nock": "^9.0.14"
},
"dependencies": {
"async": "^2.5.0",
"bluebird": "^3.5.0",
"feedparser": "^2.2.9",
"lodash": "^4.17.4",
"request": "^2.81.0",
"tiny-emitter": "^2.0.1"
}
}