-
Notifications
You must be signed in to change notification settings - Fork 388
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "image-processor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha ./test/**/*test.js",
"test:module-1": "node node_modules/mocha/bin/mocha ./test/module-1/*test.js || true",
"test:module-2": "node node_modules/mocha/bin/mocha ./test/module-2/*test.js || true",
"test:module-3": "node node_modules/mocha/bin/mocha ./test/module-3/*test.js || true",
"test:module-4": "node node_modules/mocha/bin/mocha ./test/module-4/*test.js || true",
"start": "node api/index.js || true"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"eslint-config-google": "^0.14.0",
"jsdom": "^15.1.1",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"proxyquire": "^2.1.3",
"ramda": "^0.26.1",
"rewire": "^4.0.1",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"gm": "^1.9.0",
"multer": "^1.4.2"
}
}