-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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": "@zix99/filedrop",
"version": "0.1.4",
"description": "A simple webapp to easily share files",
"main": "index.js",
"scripts": {
"start": "./index.js",
"dev": "nodemon index.js -- --dev",
"lint": "eslint .",
"release": "./release.sh",
"forever": "forever start index.js",
"stop": "forever stop index.js"
},
"bin": {
"filedrop": "./index.js"
},
"keywords": [
"webapp",
"upload",
"share"
],
"author": "zix99",
"license": "MIT",
"dependencies": {
"express": "^4.16.4",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nunjucks": "^3.2.0",
"rc": "^1.2.8",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.15.2",
"forever": "^0.15.3",
"nodemon": "^1.18.10"
},
"eslintIgnore": [
"public/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zix99/filedrop.git"
},
"bugs": {
"url": "https://github.com/zix99/filedrop/issues"
},
"homepage": "https://github.com/zix99/filedrop#readme"
}