forked from eliorar/angular-cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.05 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 4.05 KB
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
101
102
103
104
105
106
107
108
109
110
{
"name": "@eliorar/angular-cesium",
"version": "11.0.8",
"license": "MIT",
"description": "Angular library for working with Cesium.",
"repository": {
"type": "git",
"url": "git+https://github.com/eliorar/angular-cesium.git"
},
"keywords": [
"Angular",
"Cesium",
"Angular Cesium"
],
"scripts": {
"ng": "ng",
"demo:start": "ng serve angular-cesium-demo",
"demo:build": "ng build angular-cesium-demo --configuration production",
"landing-page:deploy": "ng build landing-page --configuration production; cp projects/landing-page/now.json dist/landing-page; cd dist/landing-page; now --configuration production",
"landing-page": "ng serve landing-page --host 0.0.0.0 --disableHostCheck",
"lib:build": "ng build angular-cesium --configuration production; npm run copy:extra-files; npm run schemnantics:build",
"lib:start": "ng build angular-cesium --watch",
"lib:publish": "npm run lib:build; cd dist/angular-cesium; npm publish; cd ../../; npm run docs:push",
"test": "ng test angular-cesium",
"test:ci": "ng test angular-cesium --no-watch --browsers=ChromeHeadless",
"lint": "ng lint angular-cesium",
"e2e": "ng e2e",
"gh-pages": "gh-pages -d docs -b gh-pages",
"copy:extra-files": "cp README.md LICENSE.txt dist/angular-cesium",
"schemnantics:build": "cd projects/angular-cesium; yarn build;",
"docs:run": "compodoc -p projects/angular-cesium/src/lib/tsconfig.compodoc.json --theme stripe -d docs -n \"Angular Cesium\" --watch --serve",
"docs:compile": "rimraf docs && compodoc -p projects/angular-cesium/src/lib/tsconfig.compodoc.json --theme stripe -d docs -n \"Angular Cesium\"",
"docs:push": "npm run docs:compile && npm run gh-pages && rimraf docs"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.11",
"@angular/cdk": "^13.3.9",
"@angular/common": "^13.3.11",
"@angular/compiler": "^13.3.11",
"@angular/core": "^13.3.11",
"@angular/forms": "^13.3.11",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "^13.3.11",
"@angular/platform-browser-dynamic": "^13.3.11",
"@angular/router": "^13.3.11",
"@auscope/angular2parse": "^2.0.4",
"@fortawesome/angular-fontawesome": "^0.10.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@types/lodash": "^4.14.180",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"cesium": "1.104.0",
"core-js": "^3.24.1",
"dataloader": "^1.4.0",
"geodesy": "^1.1.3",
"gh-pages": "^1.0.0",
"heatmap.js": "^2.0.5",
"https-browserify": "^1.0.0",
"json-string-mapper": "^1.0.0",
"lodash": "^4.17.21",
"newrelic": "^2.0.2",
"primitive-primitives": "0.0.6",
"rxjs": "~6.6.7",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-mockito": "^2.6.1",
"tslib": "^2.4.1",
"url": "^0.11.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.9",
"@angular/cli": "~13.3.9",
"@angular/compiler-cli": "~13.3.11",
"@angular/language-service": "~13.3.11",
"@compodoc/compodoc": "^1.1.7",
"@types/body-parser": "^1.16.3",
"@types/cors": "^2.8.3",
"@types/express": "^4.16.0",
"@types/geodesy": "^1.1.3",
"@types/jasmine": "~3.10.6",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^13.13.52",
"codelyzer": "^6.0.2",
"jasmine-core": "~3.99.1",
"jasmine-spec-reporter": "~5.0.2",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^13.3.0",
"protractor": "~7.0.0",
"rimraf": "^2.6.3",
"ts-node": "^7.0.1",
"tslint": "~6.1.0",
"@types/jest": "^23.3.12",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"typescript": "4.6.4"
},
"bugs": {
"url": "https://github.com/eliorar/angular-cesium/issues"
},
"homepage": "https://github.com/eliorar/angular-cesium#readme",
"main": "index.js",
"author": "eliorar"
}