-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "@deployable/log",
"version": "0.3.4",
"description": "Deployable Logging",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"test:debug": "DEBUG='*' mocha debug",
"release:patch": "set -uex; rm -rf node_modules; yarn; yarn test; git push; npm version patch; npm publish --access public; git push; git push --tag",
"release:test": "set -uex; npm test; npm version prerelease; npm publish --tag testing --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deployable/node-deployable-log.git"
},
"keywords": [
"deployable",
"module"
],
"author": "Matt Hoyle <code taat deployable.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deployable/node-deployable-log/issues"
},
"homepage": "https://github.com/deployable/node-deployable-log#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"pino-multi-stream": "^2.0.1",
"sinon": "^1.17.6"
},
"dependencies": {
"@deployable/ringbuffer": "~0.3.0",
"debug": "^2",
"express-pino-logger": "~2.0.0",
"pino": "~3.1.2",
"pino-debug": "~1.0.1"
}
}