adding crontab-ui to npm
parent
1ef93c872d
commit
fc2a567cac
|
@ -14,10 +14,8 @@ Read [this](http://lifepluslinux.blogspot.in/2015/06/crontab-ui-easy-and-safe-wa
|
||||||
|
|
||||||
##Setup
|
##Setup
|
||||||
|
|
||||||
git clone https://github.com/alseambusher/crontab-ui
|
npm install crontab-ui
|
||||||
cd crontab-ui
|
crontab-ui
|
||||||
npm install
|
|
||||||
node app.js
|
|
||||||
|
|
||||||
###TODO
|
###TODO
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
var crontab = require('../app.js');
|
|
@ -4,7 +4,7 @@
|
||||||
"description": "Easy and safe way to manage your crontab file",
|
"description": "Easy and safe way to manage your crontab file",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node index.js"
|
"start": "node app.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "latest",
|
"express": "latest",
|
||||||
|
@ -17,6 +17,9 @@
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "latest"
|
"node": "latest"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"crontab-ui": "bin/crontab-ui.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Reference in New Issue