48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"name": "cron-validator",
|
|
"version": "1.2.1",
|
|
"description": "Validates cron expressions",
|
|
"main": "lib/index.js",
|
|
"author": "Guillaume Rochat",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/TheCloudConnectors/cron-validator/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/TheCloudConnectors/cron-validator.git"
|
|
},
|
|
"keywords": [
|
|
"cron",
|
|
"validation"
|
|
],
|
|
"files": [
|
|
"lib/*"
|
|
],
|
|
"scripts": {
|
|
"lint": "tslint -t stylish --project \"tsconfig.json\"",
|
|
"test": "jest --verbose --coverage",
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run lint && npm run test && npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.4",
|
|
"jest": "^26.1.0",
|
|
"ts-jest": "^26.1.3",
|
|
"ts-node": "^8.10.2",
|
|
"tslint": "^6.1.2",
|
|
"tslint-config-standard": "^9.0.0",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"testRegex": "((\\.|/)(test))\\.(ts)$"
|
|
}
|
|
}
|