-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
115 lines (115 loc) · 3.15 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "strapi-stripe",
"version": "3.4.1",
"description": "Online payments and subscriptions made simple, secure and fast. This free plugin enables you to accept online payments and create subscriptions using Credit Card, Apple pay, Google pay, SEPA Direct Debit, ACH Direct Debit on your Strapi app via Stripe.",
"strapi": {
"name": "strapi-stripe",
"description": "Online payments and subscriptions made simple, secure and fast. This free plugin enables you to accept online payments and create subscriptions using Credit Card, Apple pay, Google pay, SEPA Direct Debit, ACH Direct Debit on your Strapi app via Stripe.",
"kind": "plugin"
},
"dependencies": {
"better-sqlite3": "^7.6.2",
"html-react-parser": "^1.4.10",
"stripe": "^8.210.0"
},
"scripts": {
"format": "npm-run-all -p format:*",
"format:code": "npm run prettier:code -- --write",
"format:other": "npm run prettier:other -- --write",
"lint": "npm-run-all -p lint:code",
"lint:code": "eslint .",
"lint:fix": "eslint --fix .",
"lint:other": "npm run prettier:other -- --check",
"prettier:code": "prettier \"**/*.js\"",
"prettier:other": "prettier \"**/*.{md,css,scss,yaml,yml}\""
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "3.0.0",
"lint-staged": "10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css,scss,yaml,yml}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
},
"author": {
"name": "HigherEdLab.com",
"email": "support@higheredlab.com",
"url": "https://higheredlab.com/"
},
"homepage": "https://github.com/manishkatyan/strapi-stripe#readme",
"repository": {
"type": "git",
"url": "https://github.com/manishkatyan/strapi-stripe.git"
},
"maintainers": [
{
"name": "HigherEdLab.com",
"email": "support@higheredlab.com",
"url": "https://higheredlab.com/"
}
],
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"stripe",
"checkout",
"payment",
"subscribe",
"charge",
"intent",
"merchant",
"credit card",
"debit card",
"ACH Direct Debit",
"SEPA Direct Debit",
"AliPay",
"Klarna",
"iDEAL",
"card pay",
"google pay",
"secure payment",
"payment integration",
"digital payment",
"e-commerce",
"stripe nodejs",
"stripe javascript",
"payment processing",
"pay",
"via stripe",
"element",
"online payment",
"headless CMS",
"secure payment",
"open-source",
"subscribe",
"gateway"
],
"license": "MIT"
}