forked from ng2-ui/map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.29 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
{
"name": "@ngui/map",
"version": "0.20.2",
"description": "Angular2 Google Map`",
"license": "MIT",
"main": "dist/bundles/map.umd.js",
"module": "dist/@ngui/map.es5.js",
"typings": "dist/map.d.ts",
"scripts": {
"start": "ng serve --port 9001 --open",
"lint": "tslint 'src/**/*.ts' 'app/**/*.ts'",
"lint-fix": "tslint --fix 'src/**/*.ts' 'app/**/*.ts' -p tsconfig.json",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:ngc:pre build:ngc",
"build:ngc:pre": "node ngc-pre-compiler.js",
"build:ngc": "ng-packagr -p ng-package.json",
"gh-pages": "ng build --prod --no-aot --base-href=\"/map/\" && ngh --dir dist/app --repo=https://GH_TOKEN@github.com/ng2-ui/map.git",
"test": "npm-run-all --serial test:start test:webtest test:stop",
"test:start": "forever start --silent node_modules/.bin/ng serve --port 9239",
"test:stop": "forever stopall",
"test:webtest": "webtest webtest.txt",
"upgrade": "npm-check-updates -a/--upgradeAll && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng2-ui/map.git"
},
"author": "Allen Kim<allenhwkim@gmail.com>",
"bugs": {
"url": "https://github.com/ng2-ui/map/issues"
},
"homepage": "https://github.com/ng2-ui/map#readme",
"keywords": [
"angular",
"google",
"map"
],
"dependencies": {
"tslib": "^1.7.1"
},
"peerDependencies": {
"@angular/common": ">=4.0.0"
},
"devDependencies": {
"@angular/cli": "^1.5.4",
"@angular/common": "4.4.4",
"@angular/compiler": "4.4.4",
"@angular/compiler-cli": "4.4.4",
"@angular/core": "4.4.4",
"@angular/forms": "4.4.4",
"@angular/http": "4.4.4",
"@angular/platform-browser": "4.4.4",
"@angular/platform-browser-dynamic": "4.4.4",
"@angular/router": "4.4.4",
"@ngui/utils": "^0.8.1",
"@types/googlemaps": "^3.30.0",
"@types/hammerjs": "^2.0.34",
"@types/node": "^7.0.48",
"angular-cli-ghpages": "^0.5.1",
"codelyzer": "^4.0.1",
"core-js": "^2.4.1",
"create-plunker": "^1.3.0",
"forever": "^0.15.3",
"fs-extra": "^4.0.2",
"ng-packagr": "^1.6.0",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.1",
"rxjs": "^5.5.2",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"webtest": "^0.3.8",
"zone.js": "^0.8.18"
}
}