-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.78 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mservice-calendar",
"description": "Calendar microservice",
"version": "6.0.11",
"main": "./lib/index.js",
"scripts": {
"doc": "cd schemas && apidoc -i ./../src/actions -v -o ./../docs",
"compile": "babel -d ./lib ./src",
"docker-release": "mdep docker release",
"lint": "eslint ./src",
"prepublish": "yarn compile",
"semantic-release": "semantic-release",
"start": "mfleet",
"pretest": "yarn compile",
"test": "yarn lint && mdep test run"
},
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/mservice-calendar.git"
},
"keywords": [
"calendar",
"microservice"
],
"author": "Dmitry Gorbunov <atskiisotona@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/makeomatic/mservice-calendar/issues"
},
"homepage": "https://github.com/makeomatic/mservice-calendar#readme",
"dependencies": {
"@microfleet/core": "^13.3.2",
"@microfleet/transport-amqp": "^13.2.0",
"@microfleet/validation": "^8.1.0",
"bluebird": "^3.5.5",
"bunyan": "^1.8.9",
"common-errors": "^1.0.0",
"firebase-admin": "^5.12.0",
"hapi": "^18.1.0",
"is": "^3.2.1",
"knex": "^0.17.0",
"lodash": "^4.17.2",
"luxon": "^1.15.0",
"moment": "^2.18.1",
"moment-timezone": "^0.5.25",
"ms-conf": "^5.0.0",
"pg": "^7.11.0",
"rrule": "^2.2.0",
"stdout-stream": "^1.4.0",
"uid2": "0.0.3",
"uuid": "^3.0.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/plugin-transform-strict-mode": "^7.0.0",
"@babel/register": "^7.4.4",
"@google-cloud/storage": "^0.8.0",
"@makeomatic/deploy": "^8.4.4",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/exec": "^3.3.0",
"@semantic-release/git": "^7.0.5",
"apidoc": "^0.17.5",
"apidoc-plugin-schema": "^0.1.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.4",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-makeomatic": "^3.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-promise": "^4.1.1",
"hash-files": "^1.1.1",
"json": "^9.0.6",
"mime-types": "^2.1.24",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"rimraf": "^2.6.1",
"sinon": "^7.3.2"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 4.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS"
}
},
"files": [
"schemas/",
"lib/",
"src/",
"bin/"
]
}