-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.93 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
{
"name": "google-maps-angular2",
"version": "1.1.2",
"description": "Google Maps Api for Angular 2",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"serve": "lite-server -c=bs-config.json",
"prestart": "npm run build",
"start": "concurrently \"npm run build:watch\" \"npm run serve\"",
"clean": "rimraf ./dist/*",
"build:watch": "tsc -p src/ -w",
"build": "tsc -p src/",
"prebuild": "npm run clean",
"build-dist": "ngc -p tsconfig-dist.json",
"prebuild-dist": "npm run clean",
"prepublish": "npm run tslint && npm run build-dist",
"tslint": "tslint ./src/**/*.ts -t verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamaliev/google-maps-angular2.git"
},
"bugs": {
"url": "https://github.com/kamaliev/google-maps-angular2/issues"
},
"homepage": "https://github.com/kamaliev/google-maps-angular2#readme",
"keywords": [
"google-maps-angular2",
"google-maps-angular",
"google-maps-ng",
"google-maps-ng2",
"google maps angular2",
"google maps angular",
"google maps ng",
"google maps ng2"
],
"author": "mac0eb",
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^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/compiler-cli": "^4.0.0",
"@angular/router": "^4.0.1",
"angular-in-memory-web-api": "~0.3.0",
"systemjs": "^0.20.12",
"core-js": "^2.4.1n",
"concurrently": "^3.2.0",
"lite-server": "^2.2.2",
"codelyzer": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "~2.2.0",
"rxjs": "^5.3.0",
"zone.js": "^0.8.5",
"rimraf": "^2.6.1"
},
"files": [
"dist/"
],
"pre-commit": [
"tslint"
]
}