package.json 748 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "blockly",
  3. "version": "1.0.0",
  4. "description": "Blockly is a library for building visual programming editors.",
  5. "keywords": ["blockly"],
  6. "scripts": {
  7. "lint": "jshint ."
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/google/blockly.git"
  12. },
  13. "bugs": {
  14. "url": "https://github.com/google/blockly/issues"
  15. },
  16. "homepage": "https://developers.google.com/blockly/",
  17. "author": {
  18. "name": "Neil Fraser"
  19. },
  20. "license": "Apache-2.0",
  21. "private": true,
  22. "devDependencies": {
  23. "jshint": "latest"
  24. },
  25. "jshintConfig": {
  26. "globalstrict": true,
  27. "predef": ["Blockly", "goog", "window", "document", "soy", "XMLHttpRequest"],
  28. "sub": true,
  29. "undef": true,
  30. "unused": true
  31. }
  32. }