UNPKG

tom-microservice

Version:

Tom creates customers, subscriptions plans & send notifications.

161 lines (160 loc) 4.2 kB
{ "name": "tom-microservice", "description": "Tom creates customers, subscriptions plans & send notifications.", "homepage": "https://tom.js.org", "version": "3.9.34", "main": "src", "bin": { "tom": "bin/index.js" }, "author": { "email": "josefrancisco.verdu@gmail.com", "name": "Kiko Beats", "url": "https://github.com/Kikobeats" }, "contributors": [], "repository": { "type": "git", "url": "git+https://github.com/kikobeats/tom-microservice.git" }, "bugs": { "url": "https://github.com/Kikobeats/tom-microservice/issues" }, "keywords": [ "backoffice", "email", "microservice", "notification", "payment", "stripe", "subscriptions" ], "dependencies": { "@kikobeats/time-span": "~1.0.2", "@lukeed/ms": "~2.0.2", "acho": "~4.0.6", "beauty-error": "~1.2.15", "cors": "~2.8.5", "got": "~11.8.6", "helmet": "~8.1.0", "http-body": "~1.0.4", "http-compression": "~1.1.1", "import-modules": "~2.1.0", "is-buffer": "~2.0.5", "joycon": "~3.1.1", "lodash": "~4.17.21", "mailgen": "~2.0.27", "map-values-deep": "~1.0.2", "meow": "~9.0.0", "mitt": "~3.0.0", "morgan": "~1.10.0", "nodemailer": "~7.0.2", "ow": "~0.28.2", "p-reflect": "~2.1.0", "p-retry": "~4.6.1", "p-waterfall": "~2.1.1", "picocolors": "~1.1.0", "pupa": "~2.1.1", "req-country": "~1.2.7", "request-ip": "~3.3.0", "router-http": "~1.0.1", "send-http": "~1.0.3", "stripe": "18", "to-query": "~1.6.12", "update-notifier": "~5.1.0" }, "devDependencies": { "@commitlint/cli": "latest", "@commitlint/config-conventional": "latest", "@faker-js/faker": "latest", "@ksmithut/prettier-standard": "latest", "async-listen": "latest", "ava": "5", "browser-sync": "latest", "c8": "latest", "ci-env": "latest", "ci-publish": "latest", "concurrently": "latest", "coveralls": "latest", "cssnano": "latest", "cssnano-preset-advanced": "latest", "finepack": "latest", "git-authors-cli": "latest", "git-dirty": "latest", "github-generate-release": "latest", "gulp": "5", "gulp-concat": "latest", "gulp-postcss": "latest", "gulp-uglify": "latest", "nano-staged": "latest", "postcss": "latest", "postcss-focus": "latest", "simple-git-hooks": "latest", "standard": "latest", "standard-markdown": "latest", "standard-version": "latest", "svr": "latest", "untracked": "latest" }, "engines": { "node": ">= 12" }, "files": [ "bin", "src" ], "scripts": { "build": "gulp build && untracked > .vercelignore", "clean": "rm -rf node_modules", "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true", "coverage": "c8 report --reporter=text-lcov | coveralls", "dev": "svr src/router", "dev:docs": "concurrently \"gulp\" \"npm run dev:docs:server\"", "dev:docs:server": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"", "lint": "standard-markdown README.md && standard", "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)", "pretest": "npm run lint", "release": "git-authors-cli && git add package.json && standard-version -a", "release:github": "github-generate-release", "release:tags": "git push --follow-tags origin HEAD:master", "start": "tom", "test": "NODE_ENV=test c8 ava" }, "license": "MIT", "ava": { "files": [ "test/**/*.js", "!test/helpers.js" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ], "rules": { "body-max-line-length": [ 0 ] } }, "nano-staged": { "*.js": [ "prettier-standard" ], "*.md": [ "standard-markdown" ], "package.json": [ "finepack" ] }, "simple-git-hooks": { "commit-msg": "npx commitlint --edit", "pre-commit": "npx nano-staged" }, "standard": { "env": [ "mocha" ] } }