package.json 838 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "$foldername",
  3. "version": "0.1.0",
  4. "scripts": {
  5. "test": "echo \"Error: no test specified\" && exit 1",
  6. "postinstall": "npm run compile",
  7. "compile-test": "babel test --out-dir test-build",
  8. "compile-src": "babel src --out-dir build",
  9. "compile": "npm run compile-src; npm run compile-test",
  10. "watch": "nodemon --watch src --watch test --exec \"npm run compile --silent\"",
  11. "serverwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && node build/server.js\"",
  12. "testwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && npm test\""
  13. },
  14. "dependencies": {
  15. "babel-cli": "^6.6.5",
  16. "babel-preset-es2015": "^6.6.0"
  17. },
  18. "devDependencies": {
  19. "blue-tape": "^0.2.0",
  20. "nodemon": "^1.9.1",
  21. "tape": "^4.5.1"
  22. },
  23. "private": true
  24. }