forked from ng2-ui/map
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.78 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
{
"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": "ng lint",
"lint-fix": "ng lint --fix",
"clean": "rimraf dist",
"build": "ng build @ngui/map --configuration production",
"gh-pages": "ng build --configuration production --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"
},
"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": {
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/localize": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"rxjs": "~6.6.7",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.0",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "13.1.0",
"@angular-eslint/eslint-plugin-template": "13.1.0",
"@angular-eslint/schematics": "13.1.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/cli": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@angular/language-service": "~13.3.0",
"@ngui/utils": "^0.8.1",
"@nrwl/builders": "^7.8.7",
"@types/google.maps": "~3.48.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"angular-cli-ghpages": "^1.0.0",
"create-plunker": "^1.3.0",
"eslint": "^8.2.0",
"forever": "^4.0.3",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^13.3.0",
"npm-run-all": "^4.1.5",
"protractor": "~7.0.0",
"rimraf": "^2.7.1",
"ts-node": "~7.0.0",
"typescript": "~4.6.2",
"webtest": "^0.8.3"
}
}