ts-schedule-decorators
Version:
Schedule decorator for TypeScript
71 lines (70 loc) • 1.82 kB
JSON
{
"name": "ts-schedule-decorators",
"version": "1.0.2",
"description": "Schedule decorator for TypeScript",
"keywords": [
"schedule",
"schedulable",
"decorator",
"interval",
"setInterval",
"recurrent"
],
"main": "lib/index.ts",
"scripts": {
"tslint": "tslint lib/**/*.ts",
"test": "mocha -r ts-node/register lib/*.spec.ts lib/**/*.spec.ts",
"cover": "nyc npm t",
"bump": "npm run tslint && npm version patch && git push --tags origin master && npm publish",
"bump:minor": "npm run tslint && npm version minor && git push --tags origin master && npm publish",
"bump:major": "npm run tslint && npm version major && git push --tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Boulangerie/ts-schedule-decorators.git"
},
"author": "Yannick Galatol <yannick.galatol@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Boulangerie/ts-schedule-decorators/issues"
},
"homepage": "https://github.com/Boulangerie/ts-schedule-decorators",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/core-js": "^0.9.35",
"@types/mocha": "^2.2.33",
"@types/sinon": "^1.16.34",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"ts-node": "^1.7.2",
"tslint": "^4.0.2",
"tslint-eslint-rules": "^3.1.0",
"typescript": "^2.1.0"
},
"dependencies": {
"reflect-metadata": "^0.1.9"
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"exclude": [
"typings",
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcovonly"
],
"all": true,
"report-dir": "./reports"
}
}