-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
86 lines (86 loc) · 2.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "feathers-stripe",
"description": "A Feathers service for Stripe",
"version": "3.1.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"
}
}