forked from Gbuomprisco/ng2-material-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.77 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
82
83
{
"name": "ng2-material-dropdown",
"version": "0.11.0",
"description": "Angular material-like dropdown component",
"scripts": {
"release": "npm run build && npm publish dist",
"postrelease": "rm -rf dist",
"build": "ng-packagr -p package.json && mkdir ./dist/dist && cp ./dist/bundles/ng2-material-dropdown.umd.js ./dist/dist/ng2-dropdown.bundle.js",
"start": "ng serve demo-app",
"test": "ng test modules --watch=false"
},
"author": {
"name": "Giancarlo Buomprisco",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"devDependencies": {
"@angular-devkit/build-angular": "0.1102.14",
"@angular-devkit/schematics": "11.2.14",
"@angular/animations": "11.2.14",
"@angular/cli": "11.2.14",
"@angular/common": "11.2.14",
"@angular/compiler": "11.2.14",
"@angular/compiler-cli": "11.2.14",
"@angular/core": "11.2.14",
"@angular/platform-browser": "11.2.14",
"@angular/platform-browser-dynamic": "11.2.14",
"@types/es6-collections": "^0.5.32",
"@types/jasmine": "^3.3.13",
"@types/node": "^15.12.2",
"core-js": "^3.14.0",
"jasmine": "^3.7.0",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"ng-packagr": "^11.2.4",
"raw-loader": "^4.0.2",
"reflect-metadata": "0.1.13",
"rxjs": "^6.5.5",
"source-map-loader": "1.1.3",
"ts-helpers": "1.1.2",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"tslint": "^6.1.3",
"typescript": "4.1.5",
"webpack": "4.46.0",
"webpack-dev-server": "3.11.2",
"zone.js": "^0.11.0"
},
"peerDependencies": {
"@angular/animations": "~11.2.14",
"@angular/common": "~11.2.14",
"@angular/core": "~11.2.14"
},
"keywords": [
"angular 6",
"angular 6 material dropdown",
"angular 6 component dropdown",
"angular 6 dropdown",
"angular 6 menu"
],
"repository": {
"type": "git",
"url": "https://github.com/Gbuomprisco/ng2-material-dropdown"
},
"bugs": {
"url": "https://github.com/Gbuomprisco/ng2-material-dropdown/issues"
},
"homepage": "https://github.com/Gbuomprisco/ng2-material-dropdown",
"main": "./dist/ng2-dropdown.bundle.js",
"$schema": "./node_modules/ng-packagr/package.schema.json",
"ngPackage": {
"lib": {
"entryFile": "index.ts"
}
}
}