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

angular2-file-drop

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular2-file-drop - npm Package Compare versions

Comparing version 0.0.5 to 0.1.0

build/bundles/index.umd.js

35

package.json
{
"name": "angular2-file-drop",
"version": "0.0.5",
"version": "0.1.0",
"description": "Angular2 component with Drag and Drop support for files",
"main": "build/src/index.js",
"typings": "./build/src/index.d.ts",
"main": "build/bundles/index.umd.js",
"typings": "build/index.d.ts",
"module": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run lint",
"build": "tsc",
"build": "tsc && npm run bundle",
"watch": "tsc -w",
"lint": "tslint src/*.ts",
"prepublish": "npm run build"
"build:aot": "node_modules/.bin/ngc",
"prepublish": "npm run build && npm run build:aot",
"rollup": "rollup -i ./build/index.js -o ./build/bundles/index.umd.js -n ng.file-drop -c rollup.config.js",
"bundle": "npm run rollup"
},

@@ -34,18 +38,21 @@ "repository": {

"dependencies": {
"@types/es6-shim": "^0.31.32",
"fileapi": "^2.0.20"
},
"devDependencies": {
"@angular/common": "^2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "^2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/common": "^2.4.3",
"@angular/compiler": "^2.4.3",
"@angular/compiler-cli": "^2.4.3",
"@angular/core": "^2.4.3",
"@angular/platform-browser": "2.4.3",
"@angular/platform-browser-dynamic": "2.4.3",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"tsc": "^1.20150623.0",
"rxjs": "5.0.3",
"tslint": "^3.10.2",
"typescript": "^1.8.10",
"typescript": "^2.0.10",
"typings": "^1.4.0",
"zone.js": "^0.6.21"
"zone.js": "^0.7.2",
"rollup": "^0.38.0",
"rollup-plugin-babel": "^2.6.1"
}
}

2

README.md

@@ -33,3 +33,3 @@ # angular2-file-drop

@Output() public options = {
readAs; 'ArrayBuffer'
readAs: 'ArrayBuffer'
};

@@ -36,0 +36,0 @@

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"module": "es2015",
"sourceMap": true,
"declaration": true,
"rootDir": ".",
"outDir": "build",
"rootDir": "./src",
"outDir": "./build",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": false
"noImplicitAny": false,
"types": ["@types/es6-shim"],
"moduleResolution": "node"
},
"files": [
"./src/index.ts",
"./typings/index.d.ts",
"./ambient.d.ts"

@@ -22,3 +23,7 @@ ],

"typings"
]
],
"angularCompilerOptions": {
"genDir": "aot",
"skipMetadataEmit" : false
}
}

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