package.json 675 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "pug-runtime",
  3. "version": "3.0.1",
  4. "description": "The runtime components for the pug templating language",
  5. "keywords": [
  6. "pug"
  7. ],
  8. "devDependencies": {
  9. "uglify-js": "^2.6.1"
  10. },
  11. "files": [
  12. "build.js",
  13. "index.js",
  14. "lib/dependencies.js",
  15. "lib/internals.js",
  16. "lib/sources.js",
  17. "wrap.js"
  18. ],
  19. "scripts": {
  20. "prepublish": "node prepublish",
  21. "pretest": "npm run prepublish",
  22. "build": "node prepublish"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/pugjs/pug/tree/master/packages/pug-runtime"
  27. },
  28. "browser": {
  29. "fs": false
  30. },
  31. "author": "ForbesLindesay",
  32. "license": "MIT"
  33. }