forked from ninjaPixel/node-sscheduler
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.11 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
78
79
80
81
82
83
84
85
86
87
{
"name": "@digvan/sscheduler",
"version": "1.3.5",
"description": "Flexible scheduler to find free time slots in the schedule of a resource with timezone support",
"main": "./dist/index.js",
"scripts": {
"prepare": "rm -rf dist/* && tsc",
"compile": "rm -rf dist/* && tsc",
"lint": "tslint ./src/{,**/}*.ts ./tests/{,**/}*.ts --format verbose",
"test": "npm run test:unit",
"test:unit": "NODE_ENV=test mocha tests/unit --recursive --compilers ts:ts-node/register --bail",
"cover": "npm run cover:unit",
"cover:unit": "NODE_ENV=test ./node_modules/.bin/nyc --report-dir tests/coverage/unit npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digvan/node-sscheduler.git"
},
"keywords": [
"scheduler",
"schedule",
"availability",
"appointment",
"booking",
"reservation",
"time-slot"
],
"author": "Matt Michel",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">= 6.2.0",
"npm": ">= 3"
},
"dependencies": {
"@types/moment-timezone": "^0.5.10",
"lodash": "^4.13.1",
"moment-timezone": "^0.5.23"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.41",
"@babel/preset-env": "^7.0.0-beta.41",
"@ssense/tslint-config": "^4.0.0",
"@types/chai": "^3.4.34",
"@types/lodash": "^4.13.1",
"@types/mocha": "^2.2.48",
"@types/node": "^7.0.56",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0-beta.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"mocha": "^2.5.3",
"nyc": "^8.4.0",
"ts-node": "^7.0.1",
"tslint": "^4.5.1",
"typescript": "3.2.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"node_modules",
"index.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov"
],
"all": true
}
}