forked from CesiumGS/cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.05 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": "cesium",
"version": "1.16.0",
"description": "Cesium is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
"homepage": "http://cesiumjs.org",
"license": "Apache-2.0",
"author": {
"name": "Analytical Graphics, Inc.",
"url": "http://www.agi.com"
},
"contributors": {
"name": "Cesium community",
"url": "https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTORS.md"
},
"keywords": [
"3D",
"webgl",
"geospatial",
"map",
"globe"
],
"repository": {
"type": "git",
"url": "https://github.com/AnalyticalGraphicsInc/cesium.git"
},
"bugs": {
"url": "https://github.com/AnalyticalGraphicsInc/cesium/issues",
"email": "[email protected]"
},
"dependencies": {
"requirejs": "2.1.22"
},
"devDependencies": {
"almond": "0.3.1",
"async": "1.5.0",
"bluebird": "3.0.5",
"compression": "1.6.0",
"event-stream": "3.3.2",
"express": "4.13.3",
"globby": "4.0.0",
"gulp": "3.9.0",
"gulp-insert": "0.5.0",
"gulp-jshint": "2.0.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.5.4",
"gulp-zip": "3.0.2",
"jsdoc": "3.4.0",
"jshint": "2.8.0",
"jshint-stylish": "2.1.0",
"mkdirp": "0.5.1",
"request": "2.67.0",
"rimraf": "2.4.4",
"strip-comments": "0.3.2",
"yargs": "3.30.0"
},
"scripts": {
"start": "node server.js",
"build": "gulp build",
"build-watch": "gulp build-watch",
"buildApps": "gulp buildApps",
"clean": "gulp clean",
"cloc": "gulp cloc",
"combine": "gulp combine",
"combineRelease": "gulp combineRelease",
"generateDocumentation": "gulp generateDocumentation",
"instrumentForCoverage": "gulp instrumentForCoverage",
"jsHint": "gulp jsHint",
"jsHint-watch": "gulp jsHint-watch",
"makeZipFile": "gulp makeZipFile",
"minify": "gulp minify",
"minifyRelease": "gulp minifyRelease",
"release": "gulp release",
"generateStubs": "gulp generateStubs",
"sortRequires": "gulp sortRequires"
}
}