forked from SSENSE/node-sscheduler
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 1.86 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
{
"name": "@leooxx/sscheduler-slots",
"version": "1.4.6",
"description": "Flexible scheduler to find free time slots in the schedule of a resource with slots config",
"main": "./dist/index.js",
"scripts": {
"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/leooxx/node-sscheduler-slots.git"
},
"keywords": [
"scheduler",
"schedule",
"availability",
"appointment",
"booking",
"reservation",
"time-slot"
],
"author": "Léo Poitout",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/leooxx/node-sscheduler-slots/issues"
},
"homepage": "https://github.com/leooxx/node-sscheduler-slots#readme",
"engines": {
"node": ">= 6.2.0",
"npm": ">= 3"
},
"dependencies": {
"lodash": "4.13.1",
"moment": "^2.17.1"
},
"devDependencies": {
"@ssense/tslint-config": "^4.0.0",
"@types/chai": "^3.4.34",
"@types/lodash": "4.14.50",
"@types/mocha": "^2.2.37",
"@types/node": "^7.0.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"mocha": "^2.5.3",
"nyc": "^8.4.0",
"ts-node": "^1.6.1",
"tslint": "^4.3.1",
"typescript": "2.1.5"
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"node_modules",
"index.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov"
],
"all": true
}
}