package.json 957 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "blockscad",
  3. "version": "1.0.1",
  4. "description": "BlocksCAD - Easy, Open-Source Solid CAD for Everyone!",
  5. "main": "app://blockscad/index.html",
  6. "chromium-args": "--data-path='data/' --enable-webgl --ignore-gpu-blacklist",
  7. "scripts": {
  8. "test": "echo \"Error: no test specified\" && exit 1",
  9. "lint": "node_modules/.bin/jshint blockly blockscad",
  10. "build-standalone": "node build-standalone.js",
  11. "clean-standalone": "rm -rf node_modules build"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/einsteinsworkshop/blockscad.git"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/einsteinsworkshop/blockscad/project/issues"
  19. },
  20. "author": "",
  21. "single-instance": true,
  22. "window": {
  23. "toolbar": false,
  24. "title": "BlocksCAD",
  25. "width": 1900,
  26. "height": 1200,
  27. "icon": "ewicon.png"
  28. },
  29. "license": "GPL-3.0+",
  30. "devDependencies": {
  31. "jshint": "^2.8.0",
  32. "nw-builder": "^2.0.2"
  33. }
  34. }