package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {
  2. "name": "cesium",
  3. "version": "1.72.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/CesiumGS/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/CesiumGS/cesium.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/CesiumGS/cesium/issues",
  30. "email": "cesium-dev@googlegroups.com"
  31. },
  32. "main": "index.cjs",
  33. "module": "./Source/Cesium.js",
  34. "types": "./Source/Cesium.d.ts",
  35. "exports": {
  36. "require": "./index.cjs",
  37. "import": "./Source/Cesium.js"
  38. },
  39. "type": "module",
  40. "devDependencies": {
  41. "aws-sdk": "^2.531.0",
  42. "bluebird": "^3.4.6",
  43. "cloc": "^2.3.3",
  44. "compression": "^1.6.2",
  45. "eslint": "^7.5.0",
  46. "eslint-config-prettier": "^6.10.1",
  47. "eslint-plugin-html": "^6.0.0",
  48. "express": "^4.15.0",
  49. "globby": "^11.0.0",
  50. "glsl-strip-comments": "^1.0.0",
  51. "gulp": "^4.0.0",
  52. "gulp-clean-css": "^4.2.0",
  53. "gulp-insert": "^0.5.0",
  54. "gulp-rename": "^2.0.0",
  55. "gulp-replace": "^1.0.0",
  56. "gulp-tap": "^2.0.0",
  57. "gulp-uglify": "^3.0.0",
  58. "gulp-zip": "^5.0.0",
  59. "husky": "^4.2.5",
  60. "jasmine-core": "^3.3.0",
  61. "jsdoc": "^3.4.3",
  62. "karma": "^5.1.0",
  63. "karma-chrome-launcher": "^3.1.0",
  64. "karma-coverage": "^2.0.1",
  65. "karma-coverage-istanbul-instrumenter": "^1.0.1",
  66. "karma-detect-browsers": "^2.2.3",
  67. "karma-edge-launcher": "^0.4.2",
  68. "karma-firefox-launcher": "^1.0.0",
  69. "karma-ie-launcher": "^1.0.0",
  70. "karma-jasmine": "^3.1.1",
  71. "karma-longest-reporter": "^1.1.0",
  72. "karma-safari-launcher": "^1.0.0",
  73. "karma-spec-reporter": "^0.0.32",
  74. "merge-stream": "^2.0.0",
  75. "mime": "^2.0.3",
  76. "mkdirp": "^1.0.0",
  77. "open": "^7.0.0",
  78. "prettier": "^2.0.4",
  79. "pretty-quick": "^2.0.1",
  80. "request": "^2.79.0",
  81. "rimraf": "^3.0.0",
  82. "rollup": "^2.22.1",
  83. "rollup-plugin-external-globals": "^0.5.0",
  84. "rollup-plugin-strip-pragma": "^1.0.0",
  85. "rollup-plugin-uglify": "^6.0.3",
  86. "stream-to-promise": "^3.0.0",
  87. "tsd-jsdoc": "^2.5.0",
  88. "typescript": "^3.9.2",
  89. "yargs": "^15.0.1"
  90. },
  91. "husky": {
  92. "hooks": {
  93. "pre-commit": "pretty-quick --staged"
  94. }
  95. },
  96. "scripts": {
  97. "convertToModules": "gulp convertToModules",
  98. "start": "node server.cjs",
  99. "startPublic": "node server.cjs --public",
  100. "build": "gulp build",
  101. "build-watch": "gulp build-watch",
  102. "build-ts": "gulp build-ts",
  103. "buildApps": "gulp buildApps",
  104. "clean": "gulp clean",
  105. "cloc": "gulp cloc",
  106. "combine": "gulp combine",
  107. "combineRelease": "gulp combineRelease",
  108. "coverage": "gulp coverage",
  109. "generateDocumentation": "gulp generateDocumentation",
  110. "generateDocumentation-watch": "gulp generateDocumentation-watch",
  111. "eslint": "eslint \"./**/*.js\" \"./**/*.html\" --cache --quiet",
  112. "makeZipFile": "gulp makeZipFile",
  113. "minify": "gulp minify",
  114. "minifyRelease": "gulp minifyRelease",
  115. "release": "gulp release",
  116. "build-specs": "gulp build-specs",
  117. "test": "gulp test",
  118. "test-all": "gulp test --all",
  119. "test-webgl": "gulp test --include WebGL",
  120. "test-non-webgl": "gulp test --exclude WebGL",
  121. "test-webgl-validation": "gulp test --webglValidation",
  122. "test-webgl-stub": "gulp test --webglStub",
  123. "test-release": "gulp test --release",
  124. "deploy-s3": "gulp deploy-s3",
  125. "deploy-status": "gulp deploy-status",
  126. "deploy-set-version": "gulp deploy-set-version",
  127. "prettier": "prettier --write \"**/*\"",
  128. "prettier-check": "prettier --check \"**/*\"",
  129. "pretty-quick": "pretty-quick"
  130. },
  131. "__npminstall_done": "Tue Aug 18 2020 15:47:17 GMT+0800 (GMT+08:00)",
  132. "_from": "cesium@1.72.0",
  133. "_resolved": "https://registry.npm.taobao.org/cesium/download/cesium-1.72.0.tgz"
  134. }