package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "blueimp-tmpl",
  3. "version": "3.3.0",
  4. "title": "JavaScript Templates",
  5. "description": "1KB lightweight, fast & powerful JavaScript templating engine with zero dependencies. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.",
  6. "keywords": [
  7. "javascript",
  8. "templates",
  9. "templating"
  10. ],
  11. "homepage": "https://github.com/blueimp/JavaScript-Templates",
  12. "author": {
  13. "name": "Sebastian Tschan",
  14. "url": "https://blueimp.net"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/blueimp/JavaScript-Templates.git"
  19. },
  20. "license": "MIT",
  21. "devDependencies": {
  22. "expect.js": "0.3.1",
  23. "mocha": "2.3.4",
  24. "standard": "6.0.7",
  25. "uglify-js": "2.6.1"
  26. },
  27. "scripts": {
  28. "test": "standard js/*.js test/*.js && mocha",
  29. "build": "cd js && uglifyjs tmpl.js -c -m -o tmpl.min.js --source-map tmpl.min.js.map",
  30. "preversion": "npm test",
  31. "version": "npm run build && git add -A js",
  32. "postversion": "git push --tags origin master master:gh-pages && npm publish"
  33. },
  34. "bin": {
  35. "tmpl.js": "js/compile.js"
  36. },
  37. "main": "js/tmpl.js"
  38. }