New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-toast

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-toast - npm Package Compare versions

Comparing version 1.4.5 to 1.4.6-feature-tns3-16

hooks/before-livesync/nativescript-angular-sync.js

7

index.d.ts

@@ -1,6 +0,1 @@

//--------------------------
// nativescript-toast typings file.
//-------------------------
declare module 'nativescript-toast' {

@@ -45,4 +40,4 @@

export function makeText(text: string, duration?: duration): Toast;
export function makeText(text: string, duration?: string): Toast;
}
{
"name": "nativescript-toast",
"version": "1.4.5",
"description": "A NativeScript Toast Plugin for Android and iOS apps.",
"main": "toast",
"typings": "index.d.ts",
"scripts": {
"clean": "git checkout samples/angular/package.json && rm -rf node_modules target tmp && mkdir -p tmp && mkdir -p tmp/angular && cd samples/angular && rm -rf node_modules hooks platforms",
"test": "cd tmp/angular && cp -rp ../../samples/angular/* . && rm -rf platforms node_modules hooks && tns plugin add ../.. && tns install && tns build ios && tns build android",
"pre-e2e": "cd samples/angular && tns install && tns platform add ios && tns platform add android && tns build ios && tns build android",
"e2e": "cd samples/angular && tns test ios --emulator --justlaunch",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:pre": "npm run clean && npm run test",
"release:post": "npm run changelog && npm run changelog:add",
"release:major": "npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm publish",
"release:minor": "npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm publish",
"release:patch": "npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm publish"
},
"dependencies": {},
"devDependencies": {
"conventional-changelog-cli": "1.2.0"
},
"nativescript": {
"platforms": {
"android": "1.3.0",
"ios": "1.3.0"
}
},
"keywords": [
"NativeScript",
"Toast",
"Notification",
"Android"
],
"author": "Tobias Hennig <tobias.hennig1@gmail.com> (https://github.com/TobiasHennig)",
"repository": {
"type": "git",
"url": "https://github.com/TobiasHennig/nativescript-toast.git"
},
"bugs": {
"url": "https://github.com/TobiasHennig/nativescript-toast/issues"
},
"license": "MIT"
}
"name": "nativescript-toast",
"version": "1.4.6-feature-tns3-16",
"description": "A NativeScript Toast Plugin for Android and iOS apps.",
"main": "toast",
"typings": "index.d.ts",
"scripts": {
"clean": "git checkout ../demo-angular/package.json && rm -rf node_modules target tmp && mkdir -p tmp && mkdir -p tmp/angular && cd ../demo-angular/ && rm -rf node_modules hooks platforms",
"postclean": "npm i",
"build": "echo Nothing to do",
"tsc": "tsc",
"ngc": "node --max-old-space-size=8192 ./node_modules/.bin/ngc",
"tslint": "tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**'",
"test": "cd ../demo-angular && rm -rf platforms node_modules hooks && tns plugin add ../src && tns install",
"pree2e": "cd ../demo-angular/ && tns install && tns platform add ios && tns platform add android && tns build ios && tns build android",
"e2e": "cd ../demo-angular/ && tns test ios --emulator --justlaunch",
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:pre": "npm run clean && npm run test",
"release:post": "npm run changelog && npm run changelog:add",
"release:major": "npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm publish",
"release:minor": "npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm publish",
"release:patch": "npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm publish"
},
"dependencies": {},
"peerDependencies": {
"tns-core-modules": ">=2.x|| >= 3.x || >=4.x || >=5.x"
},
"optionalPeerDependencies": {
"@angular/common": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"@angular/compiler": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"@angular/compiler-cli": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"@angular/core": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"@angular/forms": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"@angular/http": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"@angular/platform-browser": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"@angular/router": ">=2.x || >=4.x || >=5.x || >=6.x || >=7.x",
"nativescript-angular": ">=2.x || >= 3.x || >=4.x || >=5.x || >=6.x || >=7.x"
},
"devDependencies": {
"@angular/common": "~6.1.7",
"@angular/compiler": "~6.1.7",
"@angular/compiler-cli": "~6.1.7",
"@angular/core": "~6.1.7",
"@angular/forms": "~6.1.7",
"@angular/http": "~6.1.7",
"@angular/platform-browser": "~6.1.7",
"@angular/platform-browser-dynamic": "~6.1.7",
"@angular/router": "~6.1.7",
"@types/jasmine": "2.5.53",
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"conventional-changelog-cli": "1.3.1",
"jasmine": "2.6.0",
"jasmine-core": "2.6.4",
"jasmine-reporters": "2.2.1",
"mockery": "2.1.0",
"nativescript-angular": "6.1.0",
"rimraf": "2.6.1",
"rxjs": "6.3.2",
"tns-core-modules": "~4.2.0",
"tns-platform-declarations": "~4.2.0",
"tslib": "1.9.3",
"tslint": "~5.11.0",
"typescript": "2.7.2",
"zone.js": "0.8.26"
},
"nativescript": {
"platforms": {
"android": "1.3.0",
"ios": "1.3.0"
}
},
"keywords": [
"NativeScript",
"Toast",
"Notification",
"Android"
],
"author": "Tobias Hennig <tobias.hennig1@gmail.com> (https://github.com/TobiasHennig)",
"repository": {
"type": "git",
"url": "https://github.com/TobiasHennig/nativescript-toast.git"
},
"bugs": {
"url": "https://github.com/TobiasHennig/nativescript-toast/issues"
},
"license": "MIT"
}

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