-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ts-schedule-decorators",
"version": "1.0.3",
"description": "Schedule decorator for TypeScript",
"keywords": [
"schedule",
"schedulable",
"decorator",
"interval",
"setInterval",
"recurrent"
],
"main": "./dist/index",
"typings": "./dist/index",
"scripts": {
"tslint": "tslint lib/**/*.ts",
"build": "tsc",
"test": "mocha -r ts-node/register lib/*.spec.ts lib/**/*.spec.ts",
"cover": "nyc npm t",
"bump": "npm run tslint && npm run build && npm version patch && git push --tags origin master && npm publish",
"bump:minor": "npm run tslint && npm run build && npm version minor && git push --tags origin master && npm publish",
"bump:major": "npm run tslint && npm run build && npm version major && git push --tags origin master && npm publish"
},
"files": [
"lib",
"dist",
"README.md"
],
"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"
}
}