forked from iccicci/rotating-file-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "rotating-file-stream",
"version": "1.1.2",
"description": "Opens a stream.Writable to a file rotated by interval and/or size. A logrotate alternative.",
"engines": {
"node": ">=0.11"
},
"scripts": {
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive test",
"jshint": "./node_modules/.bin/jshint *.js test",
"npmignore": "echo '.jshintrc\\n.gitignore\\n.travis.yml\\ntest\\nsleep.js' > .npmignore ; cat .gitignore >> .npmignore",
"t": "./node_modules/.bin/_mocha test",
"test": "npm run npmignore && npm run jshint && npm run coverage"
},
"bugs": "https://github.com/iccicci/rotating-file-stream/issues",
"repository": "https://github.com/iccicci/rotating-file-stream",
"keywords": [
"log",
"rotate",
"logrotate"
],
"author": "Daniele Ricci <[email protected]> (https://github.com/iccicci)",
"contributors": [
"allevo"
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"tmp": "0.0.31"
},
"devDependencies": {
"istanbul": "0.4.5",
"jshint": "2.9.4",
"mocha": "3.2.0",
"mocha-istanbul": "0.3.0"
}
}