Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-push-notifications

Package Overview
Dependencies
Maintainers
9
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-push-notifications - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

13

package.json
{
"name": "nativescript-push-notifications",
"version": "1.1.0",
"version": "1.1.1",
"description": "Receive push notifications in your NativeScript app on Android and iOS.",

@@ -32,7 +32,6 @@ "main": "push-plugin",

"scripts": {
"tsc": "tsc -skipLibCheck",
"build": "npm i --ignore-scripts && tsc && cd ../publish && ./pack.sh",
"build": "npm i && tsc",
"tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\"",
"clean": "cd ../demo && rimraf hooks node_modules platforms && cd ../src && rimraf node_modules && npm run plugin.link",
"ci.tslint": "npm i --ignore-scripts && tslint '**/*.ts' --config ../tslint.json --exclude '**/node_modules/**'",
"clean": "cd ../demo && rimraf hooks node_modules platforms && cd ../src && rimraf node_modules",
"ci.tslint": "npm i && tslint '**/*.ts' --config ../tslint.json --exclude '**/node_modules/**'",
"postinstall": "node scripts/postinstall.js",

@@ -42,3 +41,3 @@ "preuninstall": "node scripts/preuninstall.js"

"dependencies": {
"nativescript-hook": "0.2.2"
"nativescript-hook": "^0.2.0"
},

@@ -52,2 +51,2 @@ "devDependencies": {

}
}
}

@@ -0,0 +0,0 @@ export interface FcmNotificaion {

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ export interface IosInteractiveNotificationAction {

@@ -0,0 +0,0 @@ "use strict";

var path = require('path');
var utils = require('../hooks/utils');
var projDir = path.resolve(__dirname, '../../../');
require('nativescript-hook')(path.resolve(__dirname, '../')).postinstall();
var hook = require('nativescript-hook')(path.resolve(__dirname, '../'));
var projDir = hook.findProjectDir();
utils.checkForGoogleServicesJson(projDir, path.join(projDir, 'app', 'App_Resources'));
utils.addOnPluginInstall(path.join(projDir, 'platforms'));
hook.postinstall();
if (projDir) {
utils.checkForGoogleServicesJson(projDir, path.join(projDir, 'app', 'App_Resources'));
utils.addOnPluginInstall(path.join(projDir, 'platforms'));
}
var path = require('path');
var utils = require('../hooks/utils');
var platformsDir = path.resolve(__dirname, '../../../platforms');
require('nativescript-hook')(path.resolve(__dirname, '../')).preuninstall();
var hook = require('nativescript-hook')(path.resolve(__dirname, '../'));
var projDir = hook.findProjectDir();
utils.removeIfPresent(platformsDir);
hook.preuninstall();
if (projDir) {
utils.removeIfPresent(path.join(projDir, 'platforms'));
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc