-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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": "@vanioinformatika/express-logger",
"version": "1.1.1",
"author": "Kovács Vince <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Gyula Szalai",
"email": "[email protected]"
},
{
"name": "Kovács Vince",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vanioinformatika/node-express-logger.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">6.9"
},
"scripts": {
"compile": "tsc",
"test": "mocha --require ts-node/register src/**/*.spec.ts",
"lint": "npm run lint:ts",
"lint:ts": "tslint --project tsconfig.json",
"preversion": "git push && npm test",
"version": "npm run compile && git add -A dist",
"postversion": "git push && git push --tags"
},
"dependencies": {
"express": "^4.17.1",
"fluent-logger": "^3.4.1",
"microtime": "^3.0.0",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/express": "^4.17.7",
"@types/mocha": "^8.0.2",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"mocha": "^8.1.1",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
}
}