UNPKG

3.85 kBJSONView Raw
1{
2 "name": "ms-users",
3 "description": "Core of the microservice for handling users",
4 "main": "./lib/index.js",
5 "version": "14.9.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.0.1",
32 "@hapi/hapi": "^19.1.1",
33 "@hapi/vision": "^6.0.0",
34 "@microfleet/core": "^17.3.3",
35 "@microfleet/transport-amqp": "^15.2.1",
36 "@microfleet/validation": "^9.0.1",
37 "bluebird": "^3.7.2",
38 "bytes": "^3.0.0",
39 "camelcase": "^6.0.0",
40 "common-errors": "^1.0.5",
41 "csv-write-stream": "^2.0.0",
42 "disposable-email-domains": "^1.0.56",
43 "dlock": "^12.1.1",
44 "flake-idgen": "^1.1.0",
45 "get-stdin": "^8.0.0",
46 "get-value": "^3.0.1",
47 "got": "^11.3.0",
48 "handlebars": "^4.7.3",
49 "ioredis": "^4.17.3",
50 "is": "^3.3.0",
51 "jsonwebtoken": "^8.5.1",
52 "jwa": "^2.0.0",
53 "lodash": "^4.17.15",
54 "moment": "^2.27.0",
55 "ms-conf": "^7.0.0",
56 "ms-flakeless": "^4.3.0",
57 "ms-mailer-client": "^8.0.1",
58 "ms-mailer-templates": "^1.16.0",
59 "ms-token": "^4.1.0",
60 "otplib": "^12.0.1",
61 "password-generator": "^2.3.2",
62 "prom-client": "^12.0.0",
63 "qs": "^6.9.1",
64 "redis-filtered-sort": "^2.3.0",
65 "request": "^2.88.2",
66 "request-promise": "^4.2.5",
67 "scrypt-kdf": "^2.0.1",
68 "serialize-error": "^7.0.1",
69 "serialize-javascript": "^4.0.0",
70 "stdout-stream": "^1.4.1",
71 "tough-cookie": "^4.0.0",
72 "uuid": "^8.2.0",
73 "yargs": "^15.1.0",
74 "zxcvbn": "^4.4.2"
75 },
76 "devDependencies": {
77 "@babel/cli": "^7.10.3",
78 "@babel/core": "^7.10.3",
79 "@babel/plugin-proposal-class-properties": "^7.10.1",
80 "@babel/plugin-proposal-object-rest-spread": "^7.10.3",
81 "@babel/plugin-transform-strict-mode": "^7.10.1",
82 "@babel/register": "^7.10.3",
83 "@makeomatic/deploy": "^10.2.1",
84 "@semantic-release/changelog": "^5.0.0",
85 "@semantic-release/exec": "^5.0.0",
86 "@semantic-release/git": "^9.0.0",
87 "apidoc": "^0.23.0",
88 "apidoc-plugin-schema": "^0.1.8",
89 "babel-eslint": "^10.0.3",
90 "babel-plugin-istanbul": "^6.0.0",
91 "chai": "^4.2.0",
92 "cheerio": "^1.0.0-rc.3",
93 "codecov": "^3.7.0",
94 "cross-env": "^7.0.0",
95 "eslint": "^7.3.1",
96 "eslint-config-makeomatic": "^5.0.2",
97 "eslint-plugin-import": "^2.21.2",
98 "eslint-plugin-mocha": "^7.0.1",
99 "eslint-plugin-promise": "^4.2.1",
100 "eslint-plugin-unicorn": "^20.1.0",
101 "faker": "^4.1.0",
102 "glob": "^7.1.6",
103 "json": "^9.0.6",
104 "md5": "^2.2.1",
105 "mocha": "^8.0.1",
106 "nyc": "^15.1.0",
107 "puppeteer": "4.0.0",
108 "rimraf": "^3.0.2",
109 "sinon": "^9.0.2"
110 },
111 "engines": {
112 "node": ">= 12.14.0",
113 "npm": ">= 4.0.0"
114 },
115 "files": [
116 "bin/",
117 "lib/",
118 "src/",
119 "schemas/",
120 "yarn.lock"
121 ],
122 "husky": {
123 "hooks": {
124 "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
125 "prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS"
126 }
127 }
128}