package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "espower",
  3. "description": "Power Assert feature instrumentor based on the ECMAScript AST",
  4. "version": "2.1.2",
  5. "author": {
  6. "name": "Takuto Wada",
  7. "email": "takuto.wada@gmail.com",
  8. "url": "https://github.com/twada"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/power-assert-js/espower/issues"
  12. },
  13. "contributors": [
  14. {
  15. "name": "James Talmage",
  16. "url": "https://github.com/jamestalmage"
  17. }
  18. ],
  19. "dependencies": {
  20. "array-find": "^1.0.0",
  21. "escallmatch": "^1.5.0",
  22. "escodegen": "^1.7.0",
  23. "escope": "^3.3.0",
  24. "espower-location-detector": "^1.0.0",
  25. "espurify": "^1.3.0",
  26. "estraverse": "^4.1.0",
  27. "source-map": "^0.5.0",
  28. "type-name": "^2.0.0"
  29. },
  30. "devDependencies": {
  31. "acorn": "^5.0.0",
  32. "acorn-es7-plugin": "^1.0.14",
  33. "esprima": "^4.0.0",
  34. "jshint": "^2.9.2",
  35. "mocha": "^5.0.0",
  36. "nyc": "^13.1.0",
  37. "rimraf": "^2.6.3"
  38. },
  39. "directories": {
  40. "lib": "./lib"
  41. },
  42. "files": [
  43. "CHANGELOG.md",
  44. "MIT-LICENSE.txt",
  45. "README.md",
  46. "index.js",
  47. "lib",
  48. "package.json"
  49. ],
  50. "homepage": "https://github.com/power-assert-js/espower",
  51. "keywords": [
  52. "power-assert",
  53. "assert",
  54. "assertion",
  55. "test",
  56. "testing",
  57. "ecmascript",
  58. "estree",
  59. "ast"
  60. ],
  61. "license": "MIT",
  62. "main": "./index.js",
  63. "repository": {
  64. "type": "git",
  65. "url": "https://github.com/power-assert-js/espower.git"
  66. },
  67. "scripts": {
  68. "preversion": "npm test",
  69. "clean": "rimraf ./coverage",
  70. "lint": "jshint index.js lib",
  71. "gen": "node gen.js",
  72. "test": "npm run lint && npm run gen && npm run test:unit",
  73. "test:unit": "mocha --reporter dot",
  74. "test:cov": "nyc --reporter=lcovonly npm run test:unit",
  75. "coveralls": "npm run test:cov && cat ./coverage/lcov.info | coveralls"
  76. }
  77. }