feathersjs/feathers-stripe

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "feathers-stripe",
  "description": "A Feathers service for Stripe",
  "version": "3.0.0",
  "homepage": "https://github.com/feathersjs-ecosystem/feathers-stripe",
  "keywords": [
    "stripe",
    "feathers",
    "feathers-plugin"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/feathersjs-ecosystem/feathers-stripe.git"
  },
  "author": {
    "name": "Feathers contributors",
    "email": "hello@feathersjs.com",
    "url": "https://feathersjs.com"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/feathersjs-ecosystem/feathers-stripe/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "engines": {
    "node": ">= 16"
  },
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "src/**",
    "dist/**"
  ],
  "scripts": {
    "build": "unbuild",
    "changelog": "github_changelog_generator --no-issues -p feathers-stripe -u feathersjs-ecosystem && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
    "publish": "git push origin --tags && npm run changelog && git push origin",
    "preversion": "npm run lint && npm run test && npm run build",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "lint": "eslint src/**/*.ts test/**/*.ts --fix",
    "vitest": "vitest --typecheck",
    "test": "vitest run --typecheck",
    "coverage": "vitest run --coverage"
  },
  "dependencies": {
    "@feathersjs/adapter-commons": "^5.0.21",
    "@feathersjs/commons": "^5.0.21",
    "@feathersjs/errors": "^5.0.21",
    "@feathersjs/express": "^5.0.21",
    "@feathersjs/feathers": "^5.0.21",
    "debug": "^4.3.4",
    "stripe": "^14.14.0"
  },
  "devDependencies": {
    "@types/debug": "^4.1.8",
    "@types/node": "^20.11.16",
    "@typescript-eslint/eslint-plugin": "^6.20.0",
    "@typescript-eslint/parser": "^6.20.0",
    "eslint": "^8.48.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-import": "^2.28.1",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "eslint-plugin-prettier": "^5.0.0",
    "prettier": "^3.0.3",
    "unbuild": "^2.0.0",
    "vite": "^5.0.12",
    "vitest": "^1.2.2"
  },
  "peerDependencies": {
    "@feathersjs/feathers": "^5.0.0",
    "stripe": "^14.14.0"
  }
}