package.json 449 B

12345678910111213141516
  1. {
  2. "name": "@brwong/$foldername",
  3. "author": "Brandon Wong <projects@brwong.net> (https://www.brwong.net/)",
  4. "version": "0.1.0",
  5. "main": "build/main.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "compile": "babel src --out-dir build && webpack build/main.js build/bundle.js",
  9. "watch": "nodemon --watch src --exec \"npm run compile\""
  10. },
  11. "directories": {
  12. "test": "test"
  13. },
  14. "private": true
  15. }