-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 KB
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
{
"name": "darkroom-api",
"private": true,
"version": "13.0.0",
"description": "Darkroom API for image manipulation",
"main": "app.js",
"dependencies": {
"@clocklimited/darkroom": "^8.1.1",
"@serby/logger": "^3.1.0",
"async": "^3.2.0",
"aws-sdk": "^2.1346.0",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"clustered": "^1.0.0",
"con.figure": "0.0.0",
"cors": "^2.8.5",
"debug": "^4.3.1",
"express": "^4.17.1",
"gridfs-stream": "^1.1.1",
"lodash.clone": "^4.0.1",
"mkdirp": "^1.0.4",
"mmmagic": "^0.5.3",
"mongodb": "6.9.0",
"morgan": "^1.10.0",
"mv": "^2.0.3",
"response-time": "^2.3.2",
"restify-errors": "^8.0.2",
"rimraf": "^3.0.2",
"service-locator": "^1.0.0",
"temp": "^0.9.4",
"tmp": "^0.2.1"
},
"devDependencies": {
"assert-diff": "^1.0.1",
"console-histogram": "^1.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"gm": "^1.18.1",
"lodash.assign": "^4.0.0",
"mc-logger": "^0.0.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"p-limit": "^3.0.0",
"p-retry": "^4",
"prettier": "^2.2.1",
"request": "^2.65.0",
"supertest": "^6.1.3",
"yargs": "^16.2.0"
},
"scripts": {
"lint": "eslint -f unix .",
"pretest": "yarn run lint",
"test": "nyc --reporter=lcov mocha -- --recursive --exit --timeout 10000",
"testonly": "nyc --reporter=lcov -- mocha --recursive --exit",
"posttest": "nyc check-coverage --statements 80 --branches 75 --functions 70 --lines 80 && rm -rf coverage",
"run-test": "mocha --exit $@",
"dev": "nodemon --ext .js app.js",
"start": "node app"
},
"author": "Clock Limited",
"license": "MIT"
}