-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.62 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
58
59
60
61
62
63
64
65
66
{
"name": "express-sharp-server",
"version": "0.0.6",
"description": "express-sharp-server is a middleware that implements a restful image server based on node-sharp",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"author": "Marcel Bretschneider <[email protected]>",
"homepage": "https://github.com/3epnm/express-sharp-server",
"license": "Apache-2.0",
"dependencies": {
"express": "^4.16.4",
"js-yaml": ">=3.13.1",
"json5": "^2.1.0",
"jsonfile": "^5.0.0",
"lodash": ">=4.17.12",
"mathjs": "^5.3.1",
"minimist": "^1.2.5",
"mkdirp": "^0.5.1",
"moment": "^2.22.2",
"multer": "^1.4.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sharp": "^0.21.0",
"underscore": "^1.9.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0",
"sinon": "^7.2.2",
"rimraf": "^2.6.3"
},
"repository": {
"type": "git",
"url": "git://github.com/3epnm/express-sharp-server"
},
"scripts": {
"start": "SET NODE_ENV=dev && node test/server.js",
"test": "mocha --exit tests/unit",
"test-ci": "nyc mocha --exit tests/unit && nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"exclude": [
"tests",
"**/*.spec.js"
]
},
"keywords": [
"jpeg",
"png",
"image",
"resize",
"polygon-extract",
"sharp",
"express",
"express-middleware",
"express-image-server"
]
}