-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "gfn",
"version": "1.0.0",
"description": "Cross-platform, native, desktop notification service for notifying when personal GitHub dashboard feed gets updated with new activity",
"main": "lib/index.js",
"keywords": [
"github",
"github-feed",
"notifications",
"notifier"
],
"scripts": {
"lint": "eslint ./src/*.js",
"lint:fix": "npm run lint -- --fix",
"dev": "nodemon src/index --ignore *.json",
"build": "babel src/ --out-dir lib/",
"build:watch": "npm run build -- --watch"
},
"dependencies": {
"inquirer": "^6.2.0",
"is-online": "^7.0.0",
"node-html-parser": "^1.1.9",
"node-notifier": "^5.2.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rss-parser": "^3.4.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^5.0.0"
},
"bin": {
"gfn": "./lib/index.js",
"github-feed-notifier": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plibither8/github-feed-notifier.git"
},
"author": "Mihir Chaturvedi",
"license": "MIT",
"bugs": {
"url": "https://github.com/plibither8/github-feed-notifier/issues"
},
"homepage": "https://github.com/plibither8/github-feed-notifier#readme",
"preferGlobal": true
}