-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
86 lines (86 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
{
"name": "@ssense/sscheduler",
"version": "2.0.0-beta.0",
"description": "Flexible scheduler to find free time slots in the schedule of a resource",
"main": "./dist/index.js",
"scripts": {
"test": "npm run test:unit && npm run test:functional",
"test:unit": "NODE_ENV=test mocha -r ts-node/register \"__tests__/unit/**/!(.d)*.ts\" --bail",
"test:functional": "NODE_ENV=test mocha -r ts-node/register \"__tests__/functional/**/!(.d)*.ts\" --bail",
"cover": "npm run cover:unit",
"cover:unit": "NODE_ENV=test ./node_modules/.bin/nyc --report-dir tests/coverage/unit npm run test",
"lint": "./node_modules/tslint/bin/tslint --project ./tsconfig.json",
"compile": "rm -rf dist/* && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSENSE/node-sscheduler.git"
},
"keywords": [
"scheduler",
"schedule",
"availability",
"appointment",
"booking",
"reservation",
"time-slot"
],
"author": "Mickael Burguet <www.rundef.com>",
"contributors": [
"Mickael Burguet <www.rundef.com>",
"Kyle Khoury"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">= 6.17.1",
"npm": ">= 3.10.10"
},
"dependencies": {
"@types/moment-timezone": "^0.5.9",
"moment": "^2.23.0",
"moment-timezone": "^0.5.23"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.37",
"@types/node": "^7.0.0",
"@types/sinon": "^7.0.0",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"chai-each": "0.0.1",
"coveralls": "^2.11.15",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.15.3",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "2.9.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"index.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov"
],
"all": true
}
}