forked from ng2-ui/auto-complete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@ngui/auto-complete",
"version": "0.16.1",
"description": "Angular Input Autocomplete",
"license": "MIT",
"main": "dist/auto-complete.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "webpack-dev-server --port 9002 --content-base app --config app/webpack.config --open",
"lint": "tslint 'src/**/*.ts' 'app/**/*.ts'",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:ngc build:umd build:app",
"build:ngc": "ngc -p tsconfig.ngc.json",
"build:umd": "cross-env NODE_ENV=prod webpack",
"build:app": "cross-env NODE_ENV=prod webpack --config app/webpack.config",
"build-and-publish": "npm run build && npm version patch && npm publish --access=public"
},
"dependencies": {
"@ngui/utils": "^0.8.0"
},
"devDependencies": {
"@angular/animations": "^4.0.0",
"@angular/cdk": "^2.0.0-beta.12",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/material": "^2.0.0-beta.12",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@types/hammerjs": "^2.0.33",
"@types/node": "^8.0.28",
"@types/uglify-js": "^2.6.29",
"@types/webpack": "^3.0.10",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "~3.1.2",
"core-js": "^2.5.1",
"cross-env": "^5.0.5",
"forever": "^0.15.3",
"hammerjs": "^2.0.8",
"http-server": "^0.10.0",
"ngc-webpack": "^3.2.0",
"npm-run-all": "^4.1.1",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.3",
"rxjs": "^5.0.2",
"strip-loader": "^0.1.2",
"systemjs": "~0.20.18",
"tslint": "5.8.0",
"ts-loader": "^2.3.6",
"typescript": "~2.4.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1",
"zone.js": "~0.8.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng2-ui/auto-complete.git"
},
"author": "",
"bugs": {
"url": "https://github.com/ng2-ui/auto-complete/issues"
},
"homepage": "https://github.com/ng2-ui/auto-complete#readme",
"keywords": [
"angular",
"auto-complete",
"input",
"select"
]
}