package.json 1.0 KB

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "node-forge-flash",
  3. "version": "0.0.0",
  4. "private": true,
  5. "description": "Flash build support for Forge.",
  6. "homepage": "https://github.com/digitalbazaar/forge",
  7. "author": {
  8. "name": "Digital Bazaar, Inc.",
  9. "email": "support@digitalbazaar.com",
  10. "url": "http://digitalbazaar.com/"
  11. },
  12. "devDependencies": {
  13. "flex-sdk": ""
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/digitalbazaar/forge"
  18. },
  19. "bugs": {
  20. "url": "https://github.com/digitalbazaar/forge/issues",
  21. "email": "support@digitalbazaar.com"
  22. },
  23. "license": "(BSD-3-Clause OR GPL-2.0)",
  24. "scripts": {
  25. "build": "mxmlc -debug=false -define=CONFIG::debugging,false -define=CONFIG::release,true -compiler.source-path=. -static-link-runtime-shared-libraries -output=swf/SocketPool.swf SocketPool.as",
  26. "build-debug": "mxmlc -debug=true -define=CONFIG::debugging,true -define=CONFIG::release,false -compiler.source-path=. -static-link-runtime-shared-libraries -output=swf/SocketPool.swf SocketPool.as"
  27. }
  28. }