Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "name": "cesium",
  3. "version": "1.65.0",
  4. "description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
  5. "homepage": "http://cesium.com/cesiumjs/",
  6. "license": "Apache-2.0",
  7. "author": {
  8. "name": "Cesium GS, Inc.",
  9. "url": "https://cesium.com"
  10. },
  11. "contributors": [
  12. {
  13. "name": "CesiumJS community",
  14. "url": "https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTORS.md"
  15. }
  16. ],
  17. "keywords": [
  18. "3D",
  19. "webgl",
  20. "geospatial",
  21. "map",
  22. "globe"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/AnalyticalGraphicsInc/cesium.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/AnalyticalGraphicsInc/cesium/issues",
  30. "email": "cesium-dev@googlegroups.com"
  31. },
  32. "main": "index.js",
  33. "module": "Source/Cesium.js",
  34. "type": "module",
  35. "dependencies": {
  36. "esm": "^3.2.25"
  37. },
  38. "devDependencies": {
  39. "aws-sdk": "^2.531.0",
  40. "bluebird": "^3.4.6",
  41. "cloc": "^2.3.3",
  42. "compression": "^1.6.2",
  43. "eslint": "^6.4.0",
  44. "eslint-plugin-html": "^6.0.0",
  45. "express": "^4.15.0",
  46. "globby": "^10.0.0",
  47. "glsl-strip-comments": "^1.0.0",
  48. "gulp": "^4.0.0",
  49. "gulp-clean-css": "^4.2.0",
  50. "gulp-insert": "^0.5.0",
  51. "gulp-rename": "^2.0.0",
  52. "gulp-replace": "^1.0.0",
  53. "gulp-tap": "^2.0.0",
  54. "gulp-uglify": "^3.0.0",
  55. "gulp-zip": "^5.0.0",
  56. "jasmine-core": "^3.3.0",
  57. "jsdoc": "^3.4.3",
  58. "karma": "^4.0.0",
  59. "karma-chrome-launcher": "^3.1.0",
  60. "karma-coverage": "^2.0.1",
  61. "karma-coverage-istanbul-instrumenter": "^1.0.1",
  62. "karma-detect-browsers": "^2.2.3",
  63. "karma-edge-launcher": "^0.4.2",
  64. "karma-firefox-launcher": "^1.0.0",
  65. "karma-ie-launcher": "^1.0.0",
  66. "karma-jasmine": "^2.0.0",
  67. "karma-longest-reporter": "^1.1.0",
  68. "karma-safari-launcher": "^1.0.0",
  69. "karma-spec-reporter": "^0.0.32",
  70. "merge-stream": "^2.0.0",
  71. "mime": "^2.0.3",
  72. "mkdirp": "^0.5.1",
  73. "open": "^7.0.0",
  74. "request": "^2.79.0",
  75. "rimraf": "^3.0.0",
  76. "rollup": "^1.21.4",
  77. "rollup-plugin-external-globals": "^0.5.0",
  78. "rollup-plugin-strip-pragma": "^1.0.0",
  79. "rollup-plugin-uglify": "^6.0.3",
  80. "stream-to-promise": "^2.2.0",
  81. "yargs": "^15.0.1"
  82. },
  83. "scripts": {
  84. "convertToModules": "gulp convertToModules",
  85. "start": "node server.js",
  86. "startPublic": "node server.js --public",
  87. "build": "gulp build",
  88. "build-watch": "gulp build-watch",
  89. "buildApps": "gulp buildApps",
  90. "clean": "gulp clean",
  91. "cloc": "gulp cloc",
  92. "combine": "gulp combine",
  93. "combineRelease": "gulp combineRelease",
  94. "coverage": "gulp coverage",
  95. "generateDocumentation": "gulp generateDocumentation",
  96. "generateDocumentation-watch": "gulp generateDocumentation-watch",
  97. "eslint": "eslint \"./**/*.js\" \"./**/*.html\" --cache --quiet",
  98. "makeZipFile": "gulp makeZipFile",
  99. "minify": "gulp minify",
  100. "minifyRelease": "gulp minifyRelease",
  101. "release": "gulp release",
  102. "build-specs": "gulp build-specs",
  103. "test": "gulp test",
  104. "test-all": "gulp test --all",
  105. "test-webgl": "gulp test --include WebGL",
  106. "test-non-webgl": "gulp test --exclude WebGL",
  107. "test-webgl-validation": "gulp test --webglValidation",
  108. "test-webgl-stub": "gulp test --webglStub",
  109. "test-release": "gulp test --release",
  110. "sortRequires": "gulp sortRequires",
  111. "deploy-s3": "gulp deploy-s3",
  112. "deploy-status": "gulp deploy-status",
  113. "deploy-set-version": "gulp deploy-set-version"
  114. }
  115. }