This repository has been archived by the owner on Jul 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
100 lines (100 loc) · 2.87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@ngui/ngui",
"version": "0.15.2",
"description": "Collection of Quality Angular2 User Interfaces",
"license": "MIT",
"main": "dist/ngui.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "NODE_ENV=dev webpack-dev-server --quiet --port 9009 --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": "NODE_ENV=prod webpack",
"build:app": "NODE_ENV=prod webpack --config app/webpack.config",
"upgrade": "npm-check-updates --upgradeAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng2-ui/ngui.git"
},
"author": "Allen Kim<[email protected]>",
"bugs": {
"url": "https://github.com/ng2-ui/ngui/issues"
},
"homepage": "https://github.com/ng2-ui/ngui#readme",
"keywords": [
"angular2",
"auto-complete",
"datetime-picker",
"google-maps",
"input",
"select",
"popup",
"modal",
"tooltip",
"menu",
"overlay",
"scrollable",
"react"
],
"peerDependencies": {},
"dependencies": {
"@ngui/auto-complete": "0.13.1",
"@ngui/collapsable": "^0.5.0",
"@ngui/datetime-picker": "0.16.0",
"@ngui/infinite-list": "0.6.0",
"@ngui/map": "0.17.1",
"@ngui/menu": "0.6.0",
"@ngui/overlay": "0.8.0",
"@ngui/parallax-scroll": "0.5.0",
"@ngui/popup": "0.5.0",
"@ngui/react": "0.3.0",
"@ngui/scrollable": "0.9.0",
"@ngui/sortable": "0.4.0",
"@ngui/sticky": "0.6.0",
"@ngui/tab": "0.5.0",
"@ngui/tooltip": "0.5.1",
"@ngui/utils": "^0.8.1",
"@types/googlemaps": "^3.26.8",
"@types/hammerjs": "^2.0.34",
"@types/node": "^7.0.12",
"@types/react": "^15.0.20",
"hammerjs": "^2.0.8"
},
"devDependencies": {
"@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/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@angular/upgrade": "^4.0.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.2",
"codelyzer": "^3.0.0-beta.4",
"core-js": "^2.4.1",
"html-loader": "^0.4.5",
"npm-check-updates": "^2.10.4",
"npm-run-all": "^4.0.2",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.1",
"rxjs": "^5.2.0",
"strip-loader": "^0.1.2",
"systemjs": "0.20.10",
"ts-loader": "^2.0.3",
"tslint": "^5.0.0",
"typescript": "^2.2.2",
"webpack": "2.3.2",
"webpack-dev-server": "2.4.2",
"zone.js": "^0.8.5"
}
}