-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
76 lines (76 loc) · 2.36 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/map",
"version": "0.30.1",
"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://[email protected]/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<[email protected]>",
"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": ">=5.0.0",
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.1",
"@angular/cli": "6.0.1",
"@angular/common": "6.0.2",
"@angular/compiler": "6.0.2",
"@angular/compiler-cli": "6.0.2",
"@angular/core": "6.0.2",
"@angular/forms": "6.0.2",
"@angular/http": "6.0.2",
"@angular/platform-browser": "6.0.2",
"@angular/platform-browser-dynamic": "6.0.2",
"@angular/router": "6.0.2",
"@ngui/utils": "^0.8.1",
"@types/googlemaps": "^3.30.0",
"@types/hammerjs": "^2.0.34",
"@types/node": "^10.1.0",
"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": "^6.0.1",
"ng-packagr": "~2.4.2",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.1",
"rxjs": "^6.1.0",
"tslint": "^5.8.0",
"typescript": "~2.7.2",
"webtest": "^0.8.3",
"zone.js": "^0.8.26"
}
}