forked from CesiumGS/cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.15 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
101
102
103
104
105
106
{
"name": "cesium",
"version": "1.54.0",
"description": "CesiumJS 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": "CesiumJS 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.3.2"
},
"devDependencies": {
"almond": "^0.3.3",
"aws-sdk": "^2.18.0",
"bluebird": "^3.4.6",
"cloc": "^2.3.3",
"compressible": "^2.0.9",
"compression": "^1.6.2",
"eslint": "^5.13.0",
"eslint-plugin-html": "^5.0.3",
"express": "^4.15.0",
"globby": "^9.0.0",
"glsl-strip-comments": "^1.0.0",
"gulp": "^4.0.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"gulp-tap": "^1.0.1",
"gulp-uglify": "^3.0.0",
"gulp-zip": "^4.0.0",
"jasmine-core": "^3.3.0",
"jsdoc": "^3.4.3",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-detect-browsers": "^2.2.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^2.0.0",
"karma-longest-reporter": "^1.1.0",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "^0.0.32",
"merge-stream": "^1.0.1",
"mime": "^2.0.3",
"mkdirp": "^0.5.1",
"request": "^2.79.0",
"rimraf": "^2.6.1",
"stream-to-promise": "^2.2.0",
"yargs": "^13.2.0"
},
"scripts": {
"start": "node server.js",
"startPublic": "node server.js --public",
"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",
"eslint": "eslint \"./**/*.js\" \"./**/*.html\" --cache --quiet",
"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-webgl-stub": "gulp test --webglStub",
"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"
}
}