You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.7 KiB
73 lines
1.7 KiB
|
7 months ago
|
{
|
||
|
|
"name": "forever",
|
||
|
|
"preferGlobal": "true",
|
||
|
|
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
|
||
|
|
"version": "4.0.3",
|
||
|
|
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
|
||
|
|
"maintainers": [
|
||
|
|
"Igor Savin <iselwin@gmail.com>"
|
||
|
|
],
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "https://github.com/foreverjs/forever.git"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"cli",
|
||
|
|
"fault tolerant",
|
||
|
|
"sysadmin",
|
||
|
|
"tools"
|
||
|
|
],
|
||
|
|
"dependencies": {
|
||
|
|
"async": "^1.5.2",
|
||
|
|
"cliff": "^0.1.10",
|
||
|
|
"clone": "^2.1.2",
|
||
|
|
"colors": "0.6.2",
|
||
|
|
"configstore": "4.0.0",
|
||
|
|
"eventemitter2": "6.4.4",
|
||
|
|
"flatiron": "~0.4.3",
|
||
|
|
"forever-monitor": "^3.0.3",
|
||
|
|
"mkdirp": "^0.5.5",
|
||
|
|
"nssocket": "^0.6.0",
|
||
|
|
"object-assign": "^4.1.1",
|
||
|
|
"prettyjson": "^1.2.2",
|
||
|
|
"shush": "^1.0.0",
|
||
|
|
"winston": "^3.4.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"chai": "^4.2.0",
|
||
|
|
"cli-testlab": "^1.10.0",
|
||
|
|
"eslint": "^5.16.0",
|
||
|
|
"eslint-config-prettier": "^6.11.0",
|
||
|
|
"eslint-plugin-prettier": "^3.1.3",
|
||
|
|
"getopts": "2.3.0",
|
||
|
|
"mocha": "^6.2.2",
|
||
|
|
"moment": "^2.24.0",
|
||
|
|
"prettier": "^1.19.1",
|
||
|
|
"request": "2.88.2",
|
||
|
|
"vows": "0.7.x"
|
||
|
|
},
|
||
|
|
"bin": {
|
||
|
|
"forever": "./bin/forever"
|
||
|
|
},
|
||
|
|
"main": "./lib/forever",
|
||
|
|
"scripts": {
|
||
|
|
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
|
||
|
|
"test": "npm run test:vows && npm run test:mocha",
|
||
|
|
"test:mocha": "mocha test/mocha/**/*.spec.js",
|
||
|
|
"test:vows": "vows test/**/*-test.js --dot-matrix -i",
|
||
|
|
"test:ci": "npm run lint && npm test",
|
||
|
|
"prettier": "prettier --write \"{lib,examples,test}/**/*.js\""
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=6"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"LICENSE",
|
||
|
|
"CHANGELOG.md",
|
||
|
|
"README.md",
|
||
|
|
"bin/*",
|
||
|
|
"lib/*"
|
||
|
|
],
|
||
|
|
"license": "MIT"
|
||
|
|
}
|