Socket
Socket
Sign inDemoInstall

ng-stripe

Package Overview
Dependencies
6
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.3 to 0.0.4

17

package.json
{
"name": "ng-stripe",
"version": "0.0.3",
"version": "0.0.4",
"description": "ng-stripe is a simple stripe payment gateway api.",

@@ -9,2 +9,9 @@ "peerDependencies": {

},
"dependencies": {
"angular-cc-library": "^1.2.5",
"tslib": "^1.9.0"
},
"devDependencies": {
"angular-cc-library": "^1.2.5"
},
"author": "Libin Prasanth",

@@ -21,2 +28,5 @@ "keywords": [

],
"whitelistedNonPeerDependencies": [
"angular-cc-library"
],
"main": "bundles/ng-stripe.umd.js",

@@ -31,6 +41,3 @@ "module": "fesm5/ng-stripe.js",

"metadata": "ng-stripe.metadata.json",
"sideEffects": false,
"dependencies": {
"tslib": "^1.9.0"
}
"sideEffects": false
}
# NgStripe
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.4.
This is a simple stripe payment gateway libray. We have not used styles, you can change the card layout as your own
This is a simple stripe payment gateway libray. We have not used styles, you can change the card layout as your own. [Demo](https://angular-3c4fd.web.app/stripe)

@@ -19,4 +19,26 @@ # Features!

```Javascript
import { NgStripeModule } from 'ng-stripe';
```javascript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { NgStripeModule } from 'ng-stripe';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
NgStripeModule
],
providers: [
],
bootstrap: [AppComponent]
})
export class AppModule { }
```

@@ -23,0 +45,0 @@ ### Configuration

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc