-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
84 lines (84 loc) · 2.53 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
84
{
"name": "ng2-material-dropdown",
"version": "1.0.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",
"build:demo:prod": "ng build demo-app --aot=true --build-optimizer --configuration production",
"start": "ng serve demo-app",
"start:prod": "ng serve --configuration production --aot=true --build-optimizer",
"test": "ng test modules --watch=false"
},
"author": {
"name": "Giancarlo Buomprisco",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.4",
"@angular-devkit/schematics": "^13.0.4",
"@angular/animations": "^13.0.3",
"@angular/cli": "^13.0.4",
"@angular/common": "^13.0.3",
"@angular/compiler": "^13.0.3",
"@angular/compiler-cli": "^13.0.3",
"@angular/core": "^13.0.3",
"@angular/platform-browser": "^13.0.3",
"@angular/platform-browser-dynamic": "^13.0.3",
"@types/es6-collections": "^0.5.29",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"awesome-typescript-loader": "5.2.1",
"core-js": "^3.2.1",
"jasmine": "^3.5.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"ng-packagr": "^13.0.8",
"raw-loader": "^3.1.0",
"reflect-metadata": "0.1.13",
"rxjs": "^6.5.3",
"source-map-loader": "^0.2.4",
"ts-helpers": "1.1.2",
"ts-node": "^8.4.1",
"tslint": "~6.1.0",
"typescript": "4.4.4",
"webpack": "^4.41.1",
"webpack-dev-server": "3.8.0",
"zone.js": "~0.11.4"
},
"peerDependencies": {},
"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"
}
},
"dependencies": {
"tslib": "^2.0.0"
}
}