-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "clamav-upload-docker",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "tsc -p .",
"watch": "tsc -w -p .",
"watch-debug": "nodemon --ext ts --exec \"npm run debug\" --watch app --watch test --watch package.json",
"debug": "nodemon --watch ./dist --inspect=0.0.0.0:5858 --nolazy ./dist/app/index.js",
"docker-debug": "docker-compose up --build",
"test": "nyc mocha",
"watch-test": "nodemon --ext ts --exec \"npm test\" --watch app --watch test --watch package.json",
"start": "node ./dist/app/index.js"
},
"author": "Stefano Straus",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.3",
"@types/multer": "^1.4.2",
"body-parser": "^1.19.0",
"clamav.js": "^0.12.0",
"easyxml": "^2.0.1",
"express": "^4.17.1",
"multer": "^1.4.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"nyc": {
"include": [
"app/**/*.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}