-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
67 lines (67 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "rss-feed-emitter",
"version": "3.0.0",
"description": "Super RSS News Feed aggregator written in Node.js and ES6",
"main": "src/FeedEmitter.js",
"types": "types/FeedEmitter.d.ts",
"directories": {
"test": "test/**/*.spec.js"
},
"scripts": {
"test": "nyc mocha \"test/**/*.spec.js\" --exit",
"coverage": "npm test && nyc report --reporter=text-lcov | npx coveralls",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"prepublishOnly": "npm run build:types",
"build:types": "npx -p typescript tsc -p tsconfig.declaration.json"
},
"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": {
"@types/chai": "^4.2.11",
"@types/feedparser": "^2.2.3",
"@types/form-data": "^2.5.0",
"@types/request": "^2.48.4",
"chai": "3.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.2.0",
"nock": "11.7.2",
"nyc": "^14.1.1"
},
"dependencies": {
"feedparser": "1.1.4",
"request": "^2.88.2"
},
"nyc": {
"all": true,
"instrument": true,
"include": [
"src/**/*"
]
},
"engines": {
"node": ">=8.16.2"
},
"release": {
"branch": "master"
}
}