UNPKG

3.8 kBJSONView Raw
1{
2 "name": "ms-users",
3 "description": "Core of the microservice for handling users",
4 "main": "./lib/index.js",
5 "version": "13.0.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": "mdep test run",
11 "test:e2e:sentinel": "mdep test run --docker_compose ./test/docker-compose.sentinel.yml",
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": "^11.1.0",
32 "@hapi/hapi": "^18.4.0",
33 "@hapi/vision": "^5.5.4",
34 "@microfleet/core": "^15.7.0",
35 "@microfleet/transport-amqp": "^15.1.4",
36 "@microfleet/validation": "^8.1.2",
37 "bluebird": "^3.7.2",
38 "bytes": "^3.0.0",
39 "common-errors": "^1.0.5",
40 "csv-write-stream": "^2.0.0",
41 "disposable-email-domains": "^1.0.50",
42 "dlock": "^11.0.2",
43 "flake-idgen": "^1.1.0",
44 "get-stdin": "^7.0.0",
45 "get-value": "^3.0.1",
46 "handlebars": "^4.5.3",
47 "ioredis": "^4.14.1",
48 "is": "^3.3.0",
49 "jsonwebtoken": "^8.5.1",
50 "jwa": "^2.0.0",
51 "lodash": "^4.17.15",
52 "moment": "^2.23.0",
53 "ms-conf": "^5.0.2",
54 "ms-flakeless": "^4.3.0",
55 "ms-mailer-client": "^8.0.1",
56 "ms-mailer-templates": "^1.14.1",
57 "ms-token": "^3.1.0",
58 "otplib": "^11.0.1",
59 "password-generator": "^2.2.3",
60 "prom-client": "^11.5.3",
61 "qs": "^6.9.1",
62 "redis-filtered-sort": "^2.3.0",
63 "request": "^2.88.0",
64 "request-promise": "^4.2.5",
65 "scrypt-kdf": "^2.0.1",
66 "serialize-error": "^5.0.0",
67 "serialize-javascript": "^2.1.2",
68 "stdout-stream": "^1.4.1",
69 "tough-cookie": "^3.0.0",
70 "uuid": "^3.3.3",
71 "yargs": "^15.0.2",
72 "zxcvbn": "^4.4.2"
73 },
74 "devDependencies": {
75 "@babel/cli": "^7.7.5",
76 "@babel/core": "^7.7.5",
77 "@babel/plugin-proposal-class-properties": "^7.7.4",
78 "@babel/plugin-proposal-object-rest-spread": "^7.7.4",
79 "@babel/plugin-transform-strict-mode": "^7.7.4",
80 "@babel/register": "^7.7.4",
81 "@makeomatic/deploy": "^9.6.1",
82 "@semantic-release/changelog": "^3.0.6",
83 "@semantic-release/exec": "^3.3.8",
84 "@semantic-release/git": "^7.0.18",
85 "apidoc": "^0.19.0",
86 "apidoc-plugin-schema": "^0.1.8",
87 "babel-eslint": "^10.0.3",
88 "babel-plugin-istanbul": "^5.2.0",
89 "chai": "^4.2.0",
90 "cheerio": "^1.0.0-rc.3",
91 "codecov": "^3.6.1",
92 "cross-env": "^6.0.3",
93 "eslint": "^6.7.2",
94 "eslint-config-makeomatic": "^4.0.0",
95 "eslint-plugin-import": "^2.19.1",
96 "eslint-plugin-mocha": "^6.2.2",
97 "eslint-plugin-promise": "^4.2.1",
98 "eslint-plugin-unicorn": "^14.0.1",
99 "faker": "^4.1.0",
100 "glob": "^7.1.6",
101 "json": "^9.0.6",
102 "md5": "^2.2.1",
103 "mocha": "^6.2.2",
104 "nyc": "^14.1.1",
105 "puppeteer": "2.0.0",
106 "rimraf": "^3.0.0",
107 "sinon": "^7.5.0"
108 },
109 "engines": {
110 "node": ">= 10.10.0",
111 "npm": ">= 4.0.0"
112 },
113 "files": [
114 "bin/",
115 "lib/",
116 "src/",
117 "schemas/",
118 "yarn.lock"
119 ],
120 "husky": {
121 "hooks": {
122 "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
123 "prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS"
124 }
125 }
126}