package.json 413 B

12345678910111213141516171819
  1. {
  2. "name": "Webpack",
  3. "version": "0.0.1",
  4. "description": "Just a bunch of files to undergo webpack bundler",
  5. "main": "index.js",
  6. "scripts" : {
  7. "start": "webpack --config webpack.config.js"
  8. },
  9. "repository": {
  10. "url": "git@git.guern.eu:noa/Webpack.git",
  11. "type": "git"
  12. },
  13. "author": "Yannick Guern <dev@guern.eu>",
  14. "license": "MIT",
  15. "devDependencies": {
  16. "webpack": "^1.14.0"
  17. }
  18. }