package.json 908 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "empower-assert",
  3. "description": "Convert assert to power-assert on ESTree AST",
  4. "version": "1.1.0",
  5. "author": "Teppei Sato <teppeis@gmail.com>",
  6. "main": "index.js",
  7. "files": [
  8. "index.js"
  9. ],
  10. "scripts": {
  11. "lint": "eslint index.js 'test/*.js'",
  12. "mocha": "mocha test",
  13. "test": "npm run lint && npm run mocha"
  14. },
  15. "dependencies": {
  16. "estraverse": "^4.2.0"
  17. },
  18. "devDependencies": {
  19. "acorn": "^4.0.3",
  20. "eslint": "^2.8.0",
  21. "eslint-config-teppeis": "^2.0.4",
  22. "espurify": "^1.5.1",
  23. "mocha": "^3.1.2"
  24. },
  25. "homepage": "https://github.com/teppeis/empower-assert",
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/teppeis/empower-assert.git"
  29. },
  30. "bugs": "https://github.com/teppeis/empower-assert/issues",
  31. "keywords": [
  32. "assert",
  33. "assertion",
  34. "power-assert",
  35. "test",
  36. "testing"
  37. ],
  38. "license": "MIT"
  39. }