package.json 506 B

1234567891011121314151617181920212223
  1. {
  2. "name": "cdfmt",
  3. "version": "1.0.0",
  4. "description": "\"{0}, {1}\" string formatting",
  5. "main": "lib/node.js",
  6. "scripts": {
  7. "build": "babel src --presets es2015 --out-dir lib",
  8. "test": "echo \"Error: no test specified\" && exit 1"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://lolg.it/herby/cdfmt.git"
  13. },
  14. "keywords": [
  15. "string",
  16. "formatting"
  17. ],
  18. "license": "MIT",
  19. "devDependencies": {
  20. "babel-cli": "^6.11.4",
  21. "babel-preset-es2015": "^6.9.0"
  22. }
  23. }