This repository has been archived by the owner on Apr 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.04 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
88
89
{
"name": "stenella",
"version": "0.1.0",
"description": "A reactive application for calendar events created within a G Suite with easy-to-add observer hooks",
"main": "index.js",
"scripts": {
"pretest": "cp ./example.env ./.env",
"test": "xo && nyc mocha",
"ci-test": "npm run pretest & ./node_modules/mocha/bin/mocha",
"start": "node index.js",
"debug": "DEBUG=* npm start",
"lint": "eslint .",
"validate": "npm ls"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cisco-ie/google-calendar-listener.git"
},
"keywords": [
"google",
"calendar",
"google suite",
"integration"
],
"author": "Brandon Him, Rekha Rawat",
"license": "MIT",
"bugs": {
"url": "https://github.com/cisco-ie/google-calendar-listener/issues"
},
"homepage": "https://github.com/cisco-ie/google-calendar-listener#readme",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"debug": "^2.6.6",
"mocha": "^3.1.0",
"nock": "^8.0.0",
"nyc": "^10.0.0",
"xo": "^0.18.2"
},
"dependencies": {
"async": "^2.1.2",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"chai-as-promised": "^6.0.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"googleapis": "^14.0.0",
"lodash": "^4.16.3",
"mocha-lcov-reporter": "^1.2.0",
"moment": "^2.15.2",
"mongoose": "^4.6.4",
"nock": "^8.2.1",
"node-cache": "^4.1.1",
"node-uuid": "^1.4.7",
"precommit-hook-eslint": "^3.0.0",
"require-all": "^2.2.0",
"retry": "^0.10.1",
"rewire": "^2.5.2",
"rx-node": "^1.0.2",
"rxjs": "^5.3.0",
"sinon": "^4.0.1",
"spotify-web-api-node": "^2.4.0"
},
"xo": {
"globals": [
"it",
"describe",
"afterEach",
"beforeEach"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"pre-commit": [
"lint",
"validate",
"test"
]
}