-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
94 lines (94 loc) · 3.53 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
87
88
89
90
91
92
93
94
{
"name": "angular-cesium",
"version": "0.0.76",
"license": "MIT",
"description": "Angular library for working with Cesium.",
"repository": "https://github.com/articodeltd/angular-cesium",
"keywords": [
"Angular",
"Cesium",
"Angular Cesium",
"Angular2 Cesium"
],
"scripts": {
"ng": "ng",
"demo:start": "ng serve angular-cesium-demo",
"demo:build": "ng build angular-cesium-demo --prod",
"landing-page:deploy": "ng build landing-page --prod; cp projects/landing-page/now.json dist/landing-page; cd dist/landing-page; now --prod",
"landing-page": "ng serve landing-page --host 0.0.0.0 --disableHostCheck",
"lib:build": "ng build angular-cesium --prod; 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": "^11.2.9",
"@angular/cdk": "^11.2.8",
"@angular/common": "^11.2.9",
"@angular/compiler": "^11.2.9",
"@angular/core": "^11.2.9",
"@angular/forms": "^11.2.9",
"@angular/material": "^11.2.8",
"@angular/platform-browser": "^11.2.9",
"@angular/platform-browser-dynamic": "^11.2.9",
"@angular/router": "^11.2.9",
"@fortawesome/angular-fontawesome": "^0.7.0",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"angular2parse": "^1.0.11",
"cesium": "1.66.0",
"core-js": "^3.2.0",
"dataloader": "^1.3.0",
"geodesy": "^1.1.1",
"gh-pages": "^1.0.0",
"heatmap.js": "^2.0.5",
"json-string-mapper": "^1.0.0",
"lodash.get": "^4.4.2",
"newrelic": "^2.0.2",
"primitive-primitives": "0.0.6",
"rxjs": "~6.5.4",
"ts-mockito": "^2.0.2",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.8",
"@angular/cli": "~11.2.8",
"@angular/compiler-cli": "^11.2.9",
"@angular/language-service": "^11.2.9",
"@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.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@types/request-promise": "^4.1.33",
"@types/socket.io": "^1.4.36",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"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": "^11.2.4",
"protractor": "~7.0.0",
"rimraf": "^2.6.3",
"ts-node": "^7.0.1",
"tslint": "~6.1.0",
"typescript": "4.1.5"
}
}