package.json 510 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "eslint-restricted-globals",
  3. "version": "0.1.0",
  4. "description": "A list of confusing globals that should be restricted to be used as globals",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha"
  8. },
  9. "repository": "doshisid/eslint-restricted-globals",
  10. "keywords": [
  11. "eslint",
  12. "globals"
  13. ],
  14. "files": [
  15. "index.js"
  16. ],
  17. "author": {
  18. "name": "Siddharth Doshi",
  19. "email": "sidoshi@mail.com"
  20. },
  21. "license": "MIT",
  22. "devDependencies": {
  23. "mocha": "^3.4.1"
  24. }
  25. }