-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
57
58
59
{
"name": "loopback-component-bunyan",
"version": "0.0.0-development",
"description": "Bunyan logger component for loopback",
"keywords": [
"loopback",
"component",
"logger",
"bunyan"
],
"homepage": "https://github.com/6RiverSystems/loopback-component-bunyan#readme",
"bugs": {
"url": "https://github.com/6RiverSystems/loopback-component-bunyan/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/6RiverSystems/loopback-component-bunyan.git"
},
"license": "MIT",
"author": "Josh Pollak <[email protected]> (http://6river.com/)",
"main": "index.js",
"scripts": {
"build": "true",
"commit": "commit",
"commitmsg": "commitlint -e ${GIT_PARAMS}",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov > .nyc_output/coverage.lcov",
"pretest": "eslint ${ESLINT_OPTS} .",
"test": "NODE_ENV=test nyc mocha ${MOCHA_OPTS}",
"test:debug": "npm run test:no-cover -- --debug-brk",
"test:no-cover": "NODE_ENV=test mocha"
},
"dependencies": {
"bunyan": "^1.8.15",
"bunyan-prettystream": "0.1.3",
"le_node": "^1.8.0",
"lodash": "^4.17.10",
"logdna": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@commitlint/prompt-cli": "^7.6.1",
"chai": "^4.3.4",
"eslint": "^4.19.1",
"eslint-config-defaults": "9.0.0",
"husky": "^0.14.3",
"loopback": "^2.42.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.23.3",
"nsp": "^3.2.1",
"nyc": "^12.0.2",
"sinon": "^6.3.5",
"sinon-chai": "^3.6.0",
"supertest": "^3.4.2"
},
"engines": {
"node": ">= 16.19.0"
}
}