-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.71 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ms-users",
"description": "Core of the microservice for handling users",
"main": "./lib/index.js",
"version": "12.0.0",
"scripts": {
"compile": "rimraf ./lib; babel -d ./lib --copy-files ./src",
"pretest": "yarn compile",
"test": "yarn lint && yarn test:e2e",
"test:e2e:cluster": "mdep test run",
"test:e2e:sentinel": "mdep test run --docker_compose ./test/docker-compose.sentinel.yml",
"test:e2e": "mkdir -p ./ss && yarn test:e2e:cluster && yarn test:e2e:sentinel",
"lint": "eslint ./src ./test",
"prepublishOnly": "yarn compile",
"semantic-release": "semantic-release",
"docker-release": "mdep docker release",
"release": "yarn --frozen-lockfile && yarn semantic-release",
"start": "mfleet"
},
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/ms-users.git"
},
"author": "Vitaly Aminev <v@makeomatic.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/ms-users/issues"
},
"homepage": "https://github.com/makeomatic/ms-users#readme",
"dependencies": {
"@hapi/bell": "^11.1.0",
"@hapi/hapi": "^18.4.0",
"@hapi/vision": "^5.5.4",
"@microfleet/core": "^15.3.1",
"@microfleet/transport-amqp": "^15.0.0",
"@microfleet/validation": "^8.1.2",
"bluebird": "^3.7.1",
"bytes": "^3.0.0",
"common-errors": "^1.0.5",
"csv-write-stream": "^2.0.0",
"disposable-email-domains": "^1.0.49",
"dlock": "^11.0.0",
"flake-idgen": "^1.1.0",
"get-stdin": "^7.0.0",
"get-value": "^3.0.1",
"handlebars": "^4.5.1",
"ioredis": "^4.14.1",
"is": "^3.3.0",
"jsonwebtoken": "^8.5.1",
"jwa": "^1.4.1",
"lodash": "^4.17.15",
"moment": "^2.23.0",
"ms-conf": "^5.0.2",
"ms-flakeless": "^4.3.0",
"ms-mailer-client": "^8.0.1",
"ms-mailer-templates": "^1.14.1",
"ms-token": "^3.1.0",
"otplib": "^11.0.1",
"password-generator": "^2.2.0",
"prom-client": "^11.5.3",
"qs": "^6.9.0",
"redis-filtered-sort": "^2.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"scrypt-kdf": "^2.0.1",
"serialize-error": "^5.0.0",
"serialize-javascript": "^2.1.0",
"stdout-stream": "^1.4.1",
"tough-cookie": "^3.0.0",
"uuid": "^3.3.3",
"yargs": "^14.2.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/register": "^7.6.2",
"@makeomatic/deploy": "^9.3.2",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/exec": "^3.3.8",
"@semantic-release/git": "^7.0.17",
"apidoc": "^0.17.7",
"apidoc-plugin-schema": "^0.1.8",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-makeomatic": "^4.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^12.1.0",
"faker": "^4.1.0",
"glob": "^7.1.5",
"json": "^9.0.6",
"md5": "^2.2.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"puppeteer": "2.0.0",
"rimraf": "^3.0.0",
"sinon": "^7.5.0"
},
"engines": {
"node": ">= 10.10.0",
"npm": ">= 4.0.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"
}
}
}