-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
117 lines (117 loc) · 3.72 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ms-payments",
"description": "Core of the microservice for handling payments",
"version": "8.6.2",
"main": "./lib/index.js",
"scripts": {
"compile": "rimraf ./lib && babel -d ./lib --copy-files ./src",
"pretest": "rimraf ./ss/*; mkdirp ./ss",
"test": "yarn lint && yarn test:unit && yarn test:e2e",
"test:e2e:cluster": "mdep test run --docker_compose ./test/docker-compose.cluster.yml",
"test:e2e:sentinel": "mdep test run --docker_compose ./test/docker-compose.sentinel.yml",
"test:e2e": "yarn test:e2e:cluster && yarn test:e2e:sentinel",
"test:unit": "mocha --recursive ./test/unit",
"lint": "eslint ./src ./test",
"start": "mfleet",
"prepublishOnly": "yarn compile",
"semantic-release": "semantic-release",
"docker-release": "mdep docker release",
"release": "yarn --frozen-lockfile && yarn semantic-release",
"postinstall": "patch-package",
"docs": "rimraf .apidoc .gh-pages && apidoc -i ./src -o ./.apidoc && mdoc-markdown && cp README.md .gh-pages/",
"docs:deploy": "gh-pages -d .gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/ms-payments.git"
},
"author": "Dmitry Gorbunov <[email protected]>",
"contributors": [
"Vitaly Aminev <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/ms-payments/issues"
},
"homepage": "https://github.com/makeomatic/ms-payments#readme",
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@microfleet/core": "^17.5.3",
"@microfleet/transport-amqp": "^15.2.0",
"@microfleet/validation": "^9.0.1",
"@sentry/node": "^5.17.0",
"apidoc": "^0.25.0",
"bluebird": "^3.7.2",
"bluebird-retry": "^0.11.0",
"bytes": "^3.0.0",
"cluster-key-slot": "^1.1.0",
"common-errors": "^1.0.5",
"debug": "^4.1.0",
"dlock": "^12.0.0",
"get-value": "^3.0.1",
"ioredis": "4.17.3",
"ioredis-lock": "^4.0.0",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"ms-conf": "^7.0.0",
"ms-mailer-client": "^8.0.2",
"ms-mailer-templates": "^1.17.0",
"ms-users": "^14.7.0",
"patch-package": "^6.2.2",
"paypal-rest-sdk": "^1.8.1",
"postinstall-postinstall": "^2.1.0",
"prom-client": "^12.0.0",
"redis-filtered-sort": "^2.3.0",
"request": "^2.88.2",
"stdout-stream": "^1.4.1",
"urlsafe-base64": "^1.0.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-strict-mode": "^7.10.1",
"@babel/register": "^7.10.1",
"@makeomatic/deploy": "^10.2.1",
"@microfleet/apidoc-plugin-json-schema": "^0.1.3",
"@microfleet/mdoc": "^0.1.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"babel-plugin-istanbul": "^6.0.0",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-makeomatic": "^5.0.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^20.1.0",
"gh-pages": "^3.1.0",
"mkdirp": "^1.0.4",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"puppeteer": "3.3.0",
"request-promise": "^4.2.5",
"rimraf": "^3.0.2",
"sinon": "^9.0.2"
},
"engine": {
"node": ">= 10.9.0"
},
"files": [
"bin/",
"lib/",
"src/",
"schemas/",
"yarn.lock"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS"
}
}
}