-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 850 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 850 Bytes
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
{
"name": "github-trend-rss",
"version": "1.0.0",
"main": "dist/app.js",
"repository": "git@github.com:mohikanz/github-trend-rss.git",
"author": "mohikanz",
"license": "Apache-2.0",
"scripts": {
"check": "standard",
"fix": "standard --fix",
"start": "nodemon --exec babel-node src/app.js",
"build": "babel src --out-dir dist",
"boot": "node dist/app.js"
},
"standard": {
"ignore": [
"/dist/"
]
},
"dependencies": {
"express": "^4.16.4",
"feed": "^2.0.1",
"moment": "^2.23.0",
"moment-timezone": "^0.5.23",
"trending-github": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"nodemon": "^1.18.6",
"standard": "^12.0.1"
}
}