angular2-file-drop
Advanced tools
Comparing version 0.0.5 to 0.1.0
{ | ||
"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" | ||
} | ||
} |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32953
24
689
2
14
1
+ Added@types/es6-shim@^0.31.32
+ Added@types/es6-shim@0.31.45(transitive)