forked from topjohnwu/magiskbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 958 Bytes
/
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
{
"name": "magisk_server",
"version": "1.0.0",
"description": "Auto handle new module requests",
"main": "lib/index.js",
"engines": {
"node": "8.10.x",
"npm": "6.1.x"
},
"scripts": {
"start": "babel-node lib/index.js",
"nodemon": "nodemon lib/index.js --exec babel-node",
"build": "rm -rf dist && babel lib -d dist",
"prod": "node dist/index.js",
"heroku-postbuild": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "topjohnwu",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"get-urls": "^7.2.0",
"js-base64": "^2.4.5",
"parse-github-url": "^1.0.2",
"utf8": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/node": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"nodemon": "^1.17.5"
}
}