-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
86 lines (86 loc) · 2.46 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
85
86
{
"name": "ngx-type-ahead",
"version": "2.0.1",
"description": "Typeahead multi-select dropdown component for angular",
"scripts": {
"test": "karma start",
"test-watch": "karma start --singleRun=false --autoWatch=true",
"commit": "npm run prepublish && npm test",
"prepublish": "ngc && npm run build",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/Greentube/ngx-typeahead.git"
},
"keywords": [
"Angular",
"dropdown",
"typeahead",
"combo"
],
"author": "Miroslav Jonas",
"license": "MIT",
"engines": {
"node": ">=8.9.1 <9.0.0",
"yarn": ">=1.3.2 <2.0.0"
},
"bugs": {
"url": "https://github.com/Greentube/ngx-typeahead/issues"
},
"main": "bundles/ngx-type-ahead.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"homepage": "https://github.com/Greentube/ngx-typeahead",
"peerDependencies": {
"@angular/common": ">=6.0.0",
"@angular/core": ">=6.0.0",
"@angular/forms": ">=6.0.0",
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@angular/animations": "^6.0.0",
"@angular/cli": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/platform-server": "^6.0.0",
"@angular/router": "^6.0.0",
"@types/es6-promise": "0.0.33",
"@types/hammerjs": "~2.0.35",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~8.9.4",
"awesome-typescript-loader": "3.1.3",
"clean-webpack-plugin": "^0.1.16",
"codelyzer": "~4.3.0",
"concurrently": "3.1.0",
"core-js": "2.5.7",
"istanbul-instrumenter-loader": "~2.0.0",
"jasmine-core": "~3.1.0",
"karma": "~2.0.3",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage": "~1.1.2",
"karma-jasmine": "~1.1.2",
"karma-mocha-reporter": "2.2.5",
"karma-remap-coverage": "0.1.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "~2.0.9",
"loader-utils": "~1.1.0",
"reflect-metadata": "~0.1.12",
"rxjs": "~6.2.1",
"source-map-loader": "~0.2.3",
"ts-helpers": "~1.1.2",
"tslint": "~5.10.0",
"tslint-eslint-rules": "~5.3.1",
"tslint-loader": "~3.6.0",
"typescript": "~2.7.2",
"webpack": "~3.12.0",
"webpack-node-externals": "~1.7.2",
"zone.js": "~0.8.26"
}
}