|
6 | 6 | "scripts": { |
7 | 7 | "compile": "babel -d ./lib ./src", |
8 | 8 | "prepublishOnly": "yarn compile", |
9 | | - "postversion": "git push && npm publish && git push --tags", |
10 | 9 | "lint": "eslint ./src", |
11 | | - "test": "yarn lint && mocha --require babel-register --bail --timeout 10000 -R spec" |
| 10 | + "test": "yarn lint && mocha --require @babel/register --bail --timeout 10000 -R spec", |
| 11 | + "semantic-release": "semantic-release" |
12 | 12 | }, |
| 13 | + "files": [ |
| 14 | + "lib/", |
| 15 | + "src/" |
| 16 | + ], |
13 | 17 | "keywords": [ |
14 | 18 | "microservice", |
15 | 19 | "amqp", |
|
28 | 32 | }, |
29 | 33 | "homepage": "https://github.com/makeomatic/ms-mailer-client#readme", |
30 | 34 | "devDependencies": { |
31 | | - "babel-cli": "^6.26.0", |
32 | | - "babel-eslint": "^8.2.1", |
33 | | - "babel-plugin-transform-class-properties": "^6.19.0", |
34 | | - "babel-plugin-transform-strict-mode": "^6.18.0", |
| 35 | + "@babel/cli": "^7.0.0", |
| 36 | + "@babel/core": "^7.0.0", |
| 37 | + "@babel/plugin-proposal-class-properties": "^7.0.0", |
| 38 | + "@babel/plugin-transform-strict-mode": "^7.0.0", |
| 39 | + "@babel/register": "^7.0.0", |
| 40 | + "@makeomatic/deploy": "^8.0.1", |
| 41 | + "@microfleet/validation": "^8.0.0", |
| 42 | + "babel-eslint": "^10.0.1", |
35 | 43 | "common-errors": "^1.0.5", |
36 | | - "eslint": "^4.15.0", |
37 | | - "eslint-config-makeomatic": "^2.0.1", |
38 | | - "eslint-plugin-import": "^2.8.0", |
39 | | - "eslint-plugin-mocha": "^4.11.0", |
40 | | - "eslint-plugin-promise": "^3.6.0", |
41 | | - "mocha": "^5.0.0", |
42 | | - "ms-validation": "^7.0.0" |
| 44 | + "eslint": "^5.7.0", |
| 45 | + "eslint-config-makeomatic": "^3.0.0", |
| 46 | + "eslint-plugin-import": "^2.14.0", |
| 47 | + "eslint-plugin-mocha": "^5.2.0", |
| 48 | + "eslint-plugin-promise": "^4.0.1", |
| 49 | + "mocha": "^5.2.0" |
43 | 50 | }, |
44 | 51 | "peerDependencies": { |
45 | 52 | "@microfleet/transport-amqp": ">= 12.x.x", |
46 | | - "common-errors": "~1.x.x", |
47 | | - "ms-validation": ">= 7.x.x" |
| 53 | + "@microfleet/validation": ">= 8.x.x", |
| 54 | + "common-errors": "~1.x.x" |
48 | 55 | }, |
49 | 56 | "dependencies": { |
50 | | - "lodash.merge": "^4.6.0" |
| 57 | + "lodash.merge": "^4.6.1" |
| 58 | + }, |
| 59 | + "husky": { |
| 60 | + "hooks": { |
| 61 | + "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", |
| 62 | + "prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS" |
| 63 | + } |
51 | 64 | } |
52 | 65 | } |
0 commit comments