package.json 696 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "umd",
  3. "version": "3.0.3",
  4. "description": "Universal Module Definition for use in automated build systems",
  5. "bin": "./bin/cli.js",
  6. "dependencies": {},
  7. "devDependencies": {
  8. "brfs": "^1.3.0",
  9. "linify": "^1.0.1",
  10. "mocha": "*",
  11. "uglify-js": "^3.3.15"
  12. },
  13. "scripts": {
  14. "build": "uglifyjs template.js > template.min.js && brfs source.js > index.js",
  15. "test": "npm run build && mocha -R spec",
  16. "prepublish": "npm run build && linify transform bin"
  17. },
  18. "files": [
  19. "index.js",
  20. "bin/cli.js"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/ForbesLindesay/umd.git"
  25. },
  26. "author": "ForbesLindesay",
  27. "license": "MIT"
  28. }