62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "@xen-orchestra/cron",
|
|
"version": "1.0.6",
|
|
"license": "ISC",
|
|
"description": "Focused, well maintained, cron parser/scheduler",
|
|
"keywords": [
|
|
"cron",
|
|
"cronjob",
|
|
"crontab",
|
|
"job",
|
|
"parser",
|
|
"pattern",
|
|
"schedule",
|
|
"scheduling",
|
|
"task"
|
|
],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/@xen-orchestra/cron",
|
|
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
|
|
"repository": {
|
|
"directory": "@xen-orchestra/cron",
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Julien Fontanet",
|
|
"email": "julien.fontanet@isonoe.net"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/",
|
|
"bin": {},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"browserslist": [
|
|
">2%"
|
|
],
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.4",
|
|
"moment-timezone": "^0.5.14"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"cross-env": "^6.0.3",
|
|
"rimraf": "^3.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"clean": "rimraf dist/",
|
|
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"prebuild": "yarn run clean",
|
|
"predev": "yarn run clean",
|
|
"prepublishOnly": "yarn run build",
|
|
"postversion": "npm publish"
|
|
}
|
|
}
|