-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "meta2-logger-server",
"version": "1.0.0",
"description": "Lightweight management server with UI for `meta2-logger` library.",
"main": "dist/src/index.js",
"typings": "dist/src/index",
"scripts": {
"build": "rm -rf ./dist; tsc",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}' '__tests__/**/*.{ts,tsx}'",
"test": "jest",
"test-server": "node ./dist/src/testServer.js",
"pretest": "npm run lint; npm run build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/metaplatform/meta2-logger-server.git"
},
"keywords": [
"log",
"logging",
"logger",
"facility",
"graylog",
"gelf",
"server",
"management"
],
"author": "Jiri Hybek <[email protected]> (http://jiri.hybek.cz/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/metaplatform/meta2-logger-server/issues"
},
"homepage": "https://github.com/metaplatform/meta2-logger-server",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"js-yaml": "^3.10.0",
"pug": "^2.0.0-rc.4"
},
"peerDependencies": {
"meta2-logger": ">= 2.1 < 3"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.0",
"@types/jest": "^22.0.1",
"@types/js-yaml": "^3.10.1",
"@types/node": "^7.0.18",
"@types/pug": "^2.0.4",
"jest": "^22.0.4",
"tslint": "^5.8.0",
"typescript": "^2.1.6"
}
}