package.json 797 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "jsblend",
  3. "version": "0.1.2",
  4. "description": "A Blender to Javascript File Reader",
  5. "main": "./build/jsblend.js",
  6. "scripts": {
  7. "watch": "npm-watch",
  8. "test": "echo \"Error: no test specified\" && exit 1",
  9. "build": "browserify ./source/main.js -o ./build/js.blend.js -d"
  10. },
  11. "watch": {
  12. "build": "source"
  13. },
  14. "keywords": [
  15. "Blender",
  16. "ThreeJS"
  17. ],
  18. "author": "Anthony C Weathersby",
  19. "license": "MIT",
  20. "dependencies": {
  21. "base64-js": "^1.2.1"
  22. },
  23. "devDependencies": {
  24. "npm-watch": "^0.2.0"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/Galactrax/js.blend.git"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/Galactrax/js.blend/issues"
  32. },
  33. "homepage": "https://github.com/Galactrax/js.blend#readme"
  34. }