-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "lag-collector",
"version": "1.0.1",
"description": "",
"repository": {
"type" : "git",
"url" : "https://github.com/mrjabba/lag-collector"
},
"main": "app.js",
"scripts": {
"test": "semistandard --verbose | snazzy && jest --ci --coverage",
"test:watch": "jest --watch",
"setup": "npm install",
"build": "tsc"
},
"license": "MIT",
"dependencies": {
"express": "4.16.3",
"fast-glob": "2.2.3",
"lodash": "^4.17.4",
"moment": "2.24.0",
"moment-timezone": "0.5.25",
"winston": "3.1.0",
"winston-daily-rotate-file": "3.4.1"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"@types/express": "4.16.0",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"jest": "^23.6.0",
"semistandard": "^12.0.1",
"snazzy": "8.0.0",
"typescript": "3.2.4"
},
"semistandard": {
"globals": [
"describe",
"it",
"expect",
"jest"
],
"ignore": [
"public/js/**",
"dist/**"
]
}
}