package.json 573 B

1234567891011121314151617181920212223
  1. {
  2. "name": "Drupal",
  3. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  4. "license": "GPL-2.0",
  5. "private": true,
  6. "scripts": {
  7. "build:js": "node ./scripts/js/babel-es6-build.js",
  8. "watch:js": "node ./scripts/js/babel-es6-watch.js",
  9. "lint:js": "eslint . || exit 0"
  10. },
  11. "devDependencies": {
  12. "babel-core": "6.17.0",
  13. "babel-preset-es2015": "6.16.0",
  14. "chokidar": "1.6.0",
  15. "eslint": "3.8.1",
  16. "glob": "^7.1.1"
  17. },
  18. "babel": {
  19. "presets": [
  20. "es2015"
  21. ]
  22. }
  23. }