-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "@webacad/ng-mat-file-upload",
"description": "File input for angular material",
"version": "2.1.0",
"keywords": [
"angular",
"forms",
"material",
"input",
"file"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Web-ACAD/ng-mat-file-upload.git"
},
"main": "./lib/index.js",
"author": {
"name": "David Kudera",
"email": "[email protected]",
"url": "https://www.davidkudera.com"
},
"peerDependencies": {
"@angular/animations": "^6.0",
"@angular/cdk": "^6.0",
"@angular/common": "^6.0",
"@angular/core": "^6.0",
"@angular/forms": "^6.0",
"@angular/material": "^6.0",
"@angular/platform-browser": "^6.0",
"@webacad/observable-file-reader": "^0.2.0",
"rxjs": "^6.0"
},
"devDependencies": {
"@angular/compiler": "^6.0",
"@angular/compiler-cli": "^6.0",
"@types/node": "^10.9.1",
"ng-packagr": "^4.1.0",
"npm-install-peers": "^1.2.1",
"reflect-metadata": "^0.1.12",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^2.9.0"
},
"scripts": {
"build": "ng-packagr -p ng-package.json",
"lint": "tslint --project tsconfig.json",
"install:peers": "npm-install-peers",
"publish:lib": "npm run build && npm publish lib --access=public",
"examples:install": "cd examples && npm install",
"examples:start": "cd examples && npm start"
}
}