-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
49
50
51
52
53
54
{
"name": "files-upload-server",
"version": "1.1.5",
"main": "./lib/file-server.js",
"license": "MIT",
"preferGlobal": true,
"description": "a command-line file upload server",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Kineviz/files-upload-server.git"
},
"keywords": [
"file server",
"command line",
"upload server"
],
"files": [
"lib",
"bin",
"examples",
"favicon.ico"
],
"bin": {
"files-upload-server": "./bin/file-server",
"file-server": "./bin/file-server",
"fs": "./bin/file-server"
},
"scripts": {
"start": "node ./bin/file-server",
"dev": "nodemon ./bin/file-server --watch ./bin/file-server --watch ./lib ",
"test": "yarn unlink || yarn link && yarn link && files-upload-server",
"release": "npm publish --registry=https://registry.npmjs.org"
},
"dependencies": {
"body-parser": "^1.18.3",
"colors": "^1.3.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"multer": "^1.4.1",
"portfinder": "^1.0.28",
"serve-index": "^1.9.1"
},
"devDependencies": {
"eslint": "^7.15.0",
"nodemon": "^2.0.6"
},
"resolutions":{
"lodash":"^4.17.20",
"ini":"^1.3.7"
}
}