package.json 768 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "dom_js",
  3. "private": true,
  4. "version": "0.0.1",
  5. "description": "Coding exercise for getting familiar with the DOM, ECMAScript, and Ava",
  6. "main": "index.js",
  7. "ava": {
  8. "babel": "inherit",
  9. "require": [
  10. "./test/_config.js"
  11. ]
  12. },
  13. "scripts": {
  14. "lint": "eslint .",
  15. "test": "ava \"test/**/test-*.js\"",
  16. "watch:test": "yarn run test --watch"
  17. },
  18. "repository": "https://notabug.org/rem/dom_js.git",
  19. "author": "René Maya <rem@disroot.org>",
  20. "license": "ISC",
  21. "devDependencies": {
  22. "ava": "^0.24.0",
  23. "babel-core": "^6.26.0",
  24. "babel-eslint": "^8.1.2",
  25. "babel-polyfill": "^6.26.0",
  26. "babel-preset-env": "^1.6.1",
  27. "babel-register": "^6.26.0",
  28. "eslint": "^4.14.0",
  29. "jsdom": "^11.5.1"
  30. }
  31. }