-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "unoconv-server",
"version": "0.2.7",
"description": "Restful server for unoconv",
"engines": {
"node": ">=6.12.2"
},
"main": "lib/index.js",
"scripts": {
"start": "node ./lib start",
"nodemon": "nodemon --delay 1000ms -i src ./lib start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphakevin/unoconv-server.git"
},
"keywords": [
"unoconv",
"listener",
"office",
"convert"
],
"author": "Alvin Ma <get.so.smart@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alphakevin/unoconv-server/issues"
},
"homepage": "https://github.com/alphakevin/unoconv-server#readme",
"dependencies": {
"async-middleware": "^1.2.1",
"content-disposition": "^0.5.2",
"express": "^4.16.2",
"lodash": "^4.17.4",
"mime-types": "^2.1.17",
"multer": "^1.3.0",
"pad": "^2.0.3",
"uuid": "^3.1.0"
},
"devDependencies": {
"nodemon": "^1.14.3"
}
}