forked from jellyjs/angular2-file-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "angular2-file-drop",
"version": "0.2.0",
"description": "Angular2 component with Drag and Drop support for files",
"main": "build/bundles/index.umd.js",
"typings": "build/index.d.ts",
"module": "build/index.js",
"scripts": {
"test": "npm run build",
"prebuild": "npm run lint",
"build": "tsc && npm run bundle",
"watch": "tsc -w",
"lint": "tslint src/*.ts",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jellyjs/angular2-file-drop.git"
},
"keywords": [
"angular",
"angular2",
"file",
"drag",
"drop",
"upload"
],
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jellyjs/angular2-file-drop/issues"
},
"homepage": "https://github.com/jellyjs/angular2-file-drop#readme",
"dependencies": {
"fileapi": "^2.0.20"
},
"devDependencies": {
"@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.3",
"tslint": "^3.10.2",
"typescript": "^2.0.10",
"typings": "^1.4.0",
"zone.js": "^0.7.2",
"rollup": "^0.38.0",
"rollup-plugin-babel": "^2.6.1"
}
}