-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.57 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
55
56
57
{
"name": "flyup-img-files-middleware",
"version": "1.1.0",
"description": "Image upload and image managing server express middleware.",
"repository": {
"type": "git",
"url": "git+https://github.com/baamenabar/flyup-img-files-middleware.git"
},
"main": "server/middleware/img-files.js",
"files": [
"server/middleware"
],
"scripts": {
"start": "node server/app.js -w server/",
"start:dev": "nodemon server/app.js -w server/",
"test": "echo 'Running Unit tests' && mocha server/**/*.test.js && echo 'Running integration tests' && mocha tests/spec.js",
"test:watch": "mocha server/**/*.test.js --watch",
"lint": "eslint server/"
},
"keywords": [
"img",
"image",
"upload",
"flyimg"
],
"author": "B. Agustin Amenabar L.",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.4",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"mime": "^2.3.1",
"morgan": "^1.9.1",
"multer": "^1.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.13.0",
"eslint-plugin-import": "^2.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"supertest": "^3.1.0"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"eslintIgnore": [
"static/",
"dev-assets/",
"coverage/"
]
}