package.json 760 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "blockly",
  3. "version": "1.0.0",
  4. "description": "Blockly is a library for building visual programming editors.",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/google/blockly.git"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/google/blockly/issues"
  12. },
  13. "homepage": "https://developers.google.com/blockly/",
  14. "author": {
  15. "name": "Neil Fraser"
  16. },
  17. "scripts": {
  18. "test": "tests/run_all_tests.sh",
  19. "build": "python build.py",
  20. "build-win": "python build-win.py"
  21. },
  22. "license": "Apache-2.0",
  23. "private": true,
  24. "devDependencies": {
  25. "google-closure-compiler": "^20180805.0.0",
  26. "google-closure-library": "^20180805.0.0"
  27. },
  28. "dependencies": {
  29. "jsdom": "^12.0.0"
  30. }
  31. }