forked from tairezzzz/angular2-file-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "angular2-file-drop",
"version": "0.0.5",
"description": "Angular2 component with Drag and Drop support for files",
"main": "build/src/index.js",
"typings": "./build/src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run lint",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint src/*.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jellyjs/angular2-file-drop.git"
},
"keywords": [
"angular",
"angular2",
"file",
"drag",
"drop",
"upload"
],
"author": "Kamil Kisiela <[email protected]>",
"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.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",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"tsc": "^1.20150623.0",
"tslint": "^3.10.2",
"typescript": "^1.8.10",
"typings": "^1.4.0",
"zone.js": "^0.6.21"
}
}