-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "stripe-angular",
"version": "1.9.3",
"description": "Angular to Stripe module containing useful providers, components, and directives",
"main": "dist/index.js",
"typings": "stripe-angular.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AckerApple/stripe-angular.git"
},
"keywords": [
"stripe",
"angular",
"credit",
"debit",
"card",
"payment",
"gateway"
],
"author": "Acker Apple",
"license": "MIT",
"bugs": {
"url": "https://github.com/AckerApple/stripe-angular/issues"
},
"homepage": "https://github.com/AckerApple/stripe-angular#readme",
"peerDependencies": {
"@types/stripe-v3": "^3.1.23"
},
"module": "fesm2015/stripe-angular.mjs",
"es2020": "fesm2020/stripe-angular.mjs",
"esm2020": "esm2020/stripe-angular.mjs",
"fesm2020": "fesm2020/stripe-angular.mjs",
"fesm2015": "fesm2015/stripe-angular.mjs",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./stripe-angular.d.ts",
"esm2020": "./esm2020/stripe-angular.mjs",
"es2020": "./fesm2020/stripe-angular.mjs",
"es2015": "./fesm2015/stripe-angular.mjs",
"node": "./fesm2015/stripe-angular.mjs",
"default": "./fesm2020/stripe-angular.mjs"
}
},
"sideEffects": false,
"dependencies": {
"tslib": "^2.3.0"
}
}