forked from valor-software/ng2-file-upload
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
81 lines (81 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "angular-file",
"version": "4.0.2",
"description": "Easy to use Angular directives for user file selections",
"main": "dist/index.js",
"module": "fesm2015/angular-file.mjs",
"typings": "angular-file.d.ts",
"keywords": [
"Angular",
"ng files",
"file-upload",
"ng-file-upload",
"ng2-file-upload",
"angular-file-upload"
],
"author": "Acker Apple",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ackerapple/angular-file.git"
},
"bugs": {
"url": "https://github.com/ackerapple/angular-file/issues"
},
"homepage": "https://github.com/ackerapple/angular-file#readme",
"contributors": [
{
"name": "Vyacheslav Chub",
"email": "vyacheslav.chub@valor-software.com",
"url": "https://github.com/buchslava"
},
{
"name": "Dmitriy Shekhovtsov",
"email": "valorkin@gmail.com",
"url": "https://github.com/valorkin"
},
{
"name": "Adrian Faciu",
"email": "adrian.faciu@gmail.com",
"url": "https://github.com/adrianfaciu"
},
{
"name": "Oleksandr Telnov",
"email": "otelnov@gmail.com",
"url": "https://github.com/otelnov"
},
{
"name": "Acker Apple",
"url": "https://github.com/ackerapple"
}
],
"es2020": "fesm2020/angular-file.mjs",
"esm2020": "esm2020/angular-file.mjs",
"fesm2020": "fesm2020/angular-file.mjs",
"fesm2015": "fesm2015/angular-file.mjs",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./angular-file.d.ts",
"esm2020": "./esm2020/angular-file.mjs",
"es2020": "./fesm2020/angular-file.mjs",
"es2015": "./fesm2015/angular-file.mjs",
"node": "./fesm2015/angular-file.mjs",
"default": "./fesm2020/angular-file.mjs"
},
"./src": {
"types": "./src/angular-file-src.d.ts",
"esm2020": "./esm2020/src/angular-file-src.mjs",
"es2020": "./fesm2020/angular-file-src.mjs",
"es2015": "./fesm2015/angular-file-src.mjs",
"node": "./fesm2015/angular-file-src.mjs",
"default": "./fesm2020/angular-file-src.mjs"
}
},
"sideEffects": false,
"dependencies": {
"tslib": "^2.3.0"
}
}