UNPKG

3.92 kBJSONView Raw
1{
2 "name": "ms-users",
3 "description": "Core of the microservice for handling users",
4 "main": "./lib/index.js",
5 "version": "14.13.0",
6 "scripts": {
7 "compile": "rimraf ./lib; babel -d ./lib --copy-files ./src",
8 "pretest": "yarn compile",
9 "test": "yarn lint && yarn test:e2e",
10 "test:e2e:cluster": "DB_SRV=redisCluster mdep test run",
11 "test:e2e:sentinel": "DB_SRV=redisSentinel mdep test run",
12 "test:e2e": "mkdir -p ./ss && yarn test:e2e:cluster && yarn test:e2e:sentinel",
13 "lint": "eslint ./src ./test",
14 "prepublishOnly": "yarn compile",
15 "semantic-release": "semantic-release",
16 "docker-release": "mdep docker release",
17 "release": "yarn --frozen-lockfile && yarn semantic-release",
18 "start": "mfleet"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/makeomatic/ms-users.git"
23 },
24 "author": "Vitaly Aminev <v@makeomatic.ca>",
25 "license": "MIT",
26 "bugs": {
27 "url": "https://github.com/makeomatic/ms-users/issues"
28 },
29 "homepage": "https://github.com/makeomatic/ms-users#readme",
30 "dependencies": {
31 "@hapi/bell": "^12.1.1",
32 "@hapi/hapi": "^20.0.2",
33 "@hapi/vision": "^6.0.1",
34 "@microfleet/core": "^17.5.3",
35 "@microfleet/plugin-consul": "^2.2.12",
36 "@microfleet/transport-amqp": "^15.2.3",
37 "@microfleet/validation": "^9.0.1",
38 "bluebird": "^3.7.2",
39 "bytes": "^3.0.0",
40 "camelcase": "^6.2.0",
41 "common-errors": "^1.2.0",
42 "csv-write-stream": "^2.0.0",
43 "disposable-email-domains": "^1.0.57",
44 "dlock": "^12.1.1",
45 "flake-idgen": "^1.1.0",
46 "get-stdin": "^8.0.0",
47 "get-value": "^3.0.1",
48 "got": "^11.8.0",
49 "handlebars": "^4.7.3",
50 "ioredis": "^4.19.2",
51 "is": "^3.3.0",
52 "jsonwebtoken": "^8.5.1",
53 "jwa": "^2.0.0",
54 "lodash": "^4.17.20",
55 "moment": "^2.29.1",
56 "ms-conf": "^7.0.2",
57 "ms-flakeless": "^4.4.1",
58 "ms-mailer-client": "^8.0.2",
59 "ms-mailer-templates": "^1.19.0",
60 "ms-token": "^5.0.1",
61 "otplib": "^12.0.1",
62 "p-retry": "^4.2.0",
63 "password-generator": "^2.3.2",
64 "prom-client": "^12.0.0",
65 "qs": "^6.9.1",
66 "redis-filtered-sort": "^2.3.0",
67 "request": "^2.88.2",
68 "request-promise": "^4.2.6",
69 "scrypt-kdf": "^2.0.1",
70 "serialize-error": "^7.0.1",
71 "serialize-javascript": "^5.0.1",
72 "stdout-stream": "^1.4.1",
73 "tough-cookie": "^4.0.0",
74 "uuid": "^8.3.1",
75 "yargs": "^16.1.1",
76 "zxcvbn": "^4.4.2"
77 },
78 "devDependencies": {
79 "@babel/cli": "^7.12.7",
80 "@babel/core": "^7.12.7",
81 "@babel/plugin-proposal-class-properties": "^7.12.1",
82 "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
83 "@babel/plugin-transform-strict-mode": "^7.12.1",
84 "@babel/register": "^7.12.1",
85 "@makeomatic/deploy": "^10.3.2",
86 "@semantic-release/changelog": "^5.0.0",
87 "@semantic-release/exec": "^5.0.0",
88 "@semantic-release/git": "^9.0.0",
89 "apidoc": "^0.25.0",
90 "apidoc-plugin-schema": "^0.1.8",
91 "babel-eslint": "^10.1.0",
92 "babel-plugin-istanbul": "^6.0.0",
93 "chai": "^4.2.0",
94 "cheerio": "^1.0.0-rc.3",
95 "codecov": "^3.8.1",
96 "cross-env": "^7.0.0",
97 "eslint": "^7.14.0",
98 "eslint-config-makeomatic": "^5.0.3",
99 "eslint-plugin-import": "^2.22.1",
100 "eslint-plugin-mocha": "^8.0.0",
101 "eslint-plugin-promise": "^4.2.1",
102 "eslint-plugin-unicorn": "^23.0.0",
103 "faker": "^5.1.0",
104 "glob": "^7.1.6",
105 "json": "^10.0.0",
106 "md5": "^2.3.0",
107 "mocha": "^8.2.1",
108 "nock": "^13.0.5",
109 "nyc": "^15.1.0",
110 "rimraf": "^3.0.2",
111 "sinon": "^9.2.1"
112 },
113 "engines": {
114 "node": ">= 12.14.0",
115 "npm": ">= 4.0.0"
116 },
117 "files": [
118 "bin/",
119 "lib/",
120 "src/",
121 "schemas/",
122 "yarn.lock"
123 ],
124 "husky": {
125 "hooks": {
126 "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
127 "prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS"
128 }
129 }
130}