forked from designbystephen/github-release-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 860 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 860 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
{
"name": "github-release-bot",
"version": "0.1.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=test mocha 'src/**/*.test.js'",
"dev": "nodemon --watch src --exec babel-node src",
"start": "babel-node src",
"start:forever": "forever start build",
"build": "babel src --out-dir build"
},
"dependencies": {
"forever": "^3.0.4",
"isomorphic-fetch": "^3.0.0",
"node-cache": "^5.1.2",
"universal-dotenv": "^3.2.3"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/node": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/register": "^7.13.8",
"cross-env": "^7.0.3",
"expect": "^26.6.2",
"mocha": "^8.3.1",
"nock": "^13.0.10",
"nodemon": "^3.0.2"
}
}