-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "loopback-component-logger",
"version": "1.0.0",
"description": "Logging component for loopback",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yantrashala/loopback-component-logger"
},
"scripts": {
"lint": "eslint .",
"start": "node .",
"posttest": "npm run lint && nsp check",
"test": "nyc mocha --timeout=3000 --recursive test"
},
"dependencies": {
"bunyan": "^1.8.10",
"debug": "^2.6.8"
},
"devDependencies": {
"chai": "^4.0.2",
"compression": "^1.0.3",
"cors": "^2.5.2",
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"helmet": "^1.3.0",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"loopback-connector-mongodb": "^3.1.0",
"loopback-connector-rest": "^2.1.0",
"mocha": "^3.4.2",
"nsp": "^2.1.0",
"nyc": "^11.0.2",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0",
"supertest": "^3.0.0"
},
"files": [
"index.js",
"lib",
"README.md"
],
"contributors": [
{
"name": "Prashant Bhadauria",
"url": "https://github.com/pbhadauria2000"
}
]
}