forked from TerriaJS/cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.92 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
95
96
97
98
99
100
{
"name": "cesium",
"version": "1.21.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.2.0"
},
"devDependencies": {
"almond": "0.3.1",
"aws-sdk": "2.2.45",
"bluebird": "3.3.4",
"compressible": "2.0.7",
"compression": "1.6.1",
"electron-prebuilt": "0.37.2",
"event-stream": "3.3.2",
"express": "4.13.4",
"globby": "4.0.0",
"gulp": "3.9.1",
"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",
"jasmine-core": "2.4.1",
"jsdoc": "3.4.0",
"jshint": "2.9.1",
"jshint-stylish": "2.1.0",
"karma": "0.13.22",
"karma-chrome-launcher": "0.2.2",
"karma-detect-browsers": "2.0.2",
"karma-electron-launcher": "0.1.0",
"karma-firefox-launcher": "0.1.7",
"karma-ie-launcher": "0.2.0",
"karma-jasmine": "0.3.8",
"karma-requirejs": "0.2.6",
"karma-safari-launcher": "0.1.1",
"karma-spec-reporter": "0.0.24",
"mime": "1.3.4",
"mkdirp": "0.5.1",
"request": "2.69.0",
"rimraf": "2.5.2",
"strip-comments": "0.3.2",
"yargs": "4.3.2"
},
"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",
"requirejs": "gulp requirejs",
"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",
"test": "gulp test",
"test-all": "gulp test --all",
"test-webgl": "gulp test --include WebGL",
"test-non-webgl": "gulp test --exclude WebGL",
"test-webgl-validation": "gulp test --webglValidation",
"test-release": "gulp test --release",
"generateStubs": "gulp generateStubs",
"sortRequires": "gulp sortRequires",
"deploy-s3": "gulp deploy-s3",
"deploy-status": "gulp deploy-status",
"deploy-set-version": "gulp deploy-set-version"
}
}