package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "espower-location-detector",
  3. "description": "AST source location detection helper for power-assert",
  4. "version": "1.0.0",
  5. "author": {
  6. "name": "Takuto Wada",
  7. "email": "takuto.wada@gmail.com",
  8. "url": "https://github.com/twada"
  9. },
  10. "bugs": "https://github.com/twada/espower-location-detector/issues",
  11. "dependencies": {
  12. "is-url": "^1.2.1",
  13. "path-is-absolute": "^1.0.0",
  14. "source-map": "^0.5.0",
  15. "xtend": "^4.0.0"
  16. },
  17. "devDependencies": {
  18. "acorn": "^3.3.0",
  19. "escallmatch": "^1.5.0",
  20. "escodegen": "^1.8.1",
  21. "estraverse": "^4.2.0",
  22. "jshint": "^2.9.3",
  23. "mocha": "^3.0.2"
  24. },
  25. "files": [
  26. "CHANGELOG.md",
  27. "LICENSE",
  28. "README.md",
  29. "index.js",
  30. "lib"
  31. ],
  32. "homepage": "https://github.com/twada/espower-location-detector",
  33. "keywords": [
  34. "ast",
  35. "estree",
  36. "sourcemaps"
  37. ],
  38. "license": "MIT",
  39. "main": "index.js",
  40. "repository": {
  41. "type": "git",
  42. "url": "git://github.com/twada/espower-location-detector.git"
  43. },
  44. "scripts": {
  45. "lint": "jshint index.js lib",
  46. "test": "npm run lint && mocha test"
  47. }
  48. }