forked from snxraven/autoinstallers
40 lines
809 B
JSON
40 lines
809 B
JSON
|
{
|
||
|
"author": {
|
||
|
"name": "Luca Grulla",
|
||
|
"url": "https://www.lucagrulla.com"
|
||
|
},
|
||
|
"contributors": [
|
||
|
"Luca Grulla",
|
||
|
"Tom Hall"
|
||
|
],
|
||
|
"name": "tail",
|
||
|
"description": "tail a file in node",
|
||
|
"keywords": [
|
||
|
"tail",
|
||
|
"file",
|
||
|
"logs"
|
||
|
],
|
||
|
"version": "2.2.4",
|
||
|
"homepage": "https://www.lucagrulla.com/node-tail",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/lucagrulla/node-tail.git"
|
||
|
},
|
||
|
"main": "lib/tail",
|
||
|
"engines": {
|
||
|
"node": ">= 6.0.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "rm -f ./lib/** && cp src/tail.js ./lib/",
|
||
|
"prepare": "npm run build",
|
||
|
"prepublishOnly": "npm run test",
|
||
|
"test": "mocha",
|
||
|
"coverage": "nyc npm run test"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"chai": "4.x",
|
||
|
"mocha": "9.x",
|
||
|
"nyc": "^15.1.0"
|
||
|
}
|
||
|
}
|