You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021
  1. {
  2. "name": "smartgame",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "build-dev": "browserify js/main.js -t [ babelify --sourceMap ] --debug --outfile public/bundle.js",
  9. "build-prod": "browserify js/main.js -t [ babelify ] --outfile public/bundle.js",
  10. "watch": "dev-refresh --serve public --cmd 'npm run build-dev' js"
  11. },
  12. "author": "",
  13. "license": "ISC",
  14. "devDependencies": {
  15. "babel-core": "^6.26.0",
  16. "babel-preset-env": "^1.6.1",
  17. "babelify": "^8.0.0",
  18. "browserify": "^14.5.0",
  19. "dev-refresh": "file:../dev-refresh"
  20. }
  21. }