package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "escallmatch",
  3. "description": "ECMAScript CallExpression matcher made from function/method signature",
  4. "version": "1.5.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/escallmatch/issues",
  11. "dependencies": {
  12. "call-matcher": "^1.0.0",
  13. "esprima": "^2.0.0"
  14. },
  15. "devDependencies": {
  16. "babel-types": "^6.13.0",
  17. "babylon": "^6.8.4",
  18. "browserify": "^13.1.0",
  19. "del": "^2.2.2",
  20. "espurify": "^1.6.0",
  21. "estraverse": "^4.2.0",
  22. "gulp": "^3.9.1",
  23. "gulp-derequire": "^2.1.0",
  24. "gulp-dereserve": "^0.2.1",
  25. "gulp-jshint": "^2.0.1",
  26. "gulp-mocha": "^3.0.1",
  27. "gulp-mocha-phantomjs": "^0.11.0",
  28. "gulp-util": "^3.0.7",
  29. "gulp-webserver": "^0.9.1",
  30. "jshint": "^2.9.2",
  31. "jshint-stylish": "^2.2.1",
  32. "licensify": "^3.1.2",
  33. "mocha": "^3.0.2",
  34. "package-json-versionify": "^1.0.2",
  35. "vinyl-source-stream": "^1.1.0"
  36. },
  37. "directories": {
  38. "test": "test/"
  39. },
  40. "files": [
  41. "CHANGELOG.md",
  42. "LICENSE",
  43. "README.md",
  44. "index.js",
  45. "build/escallmatch.js"
  46. ],
  47. "homepage": "https://github.com/twada/escallmatch",
  48. "keywords": [
  49. "ecmascript",
  50. "ast"
  51. ],
  52. "license": "MIT",
  53. "main": "./index.js",
  54. "repository": {
  55. "type": "git",
  56. "url": "git://github.com/twada/escallmatch.git"
  57. },
  58. "scripts": {
  59. "preversion": "npm test",
  60. "version": "npm run dist && git add -A build",
  61. "dist": "gulp dist",
  62. "bower": "bower install --config.interactive=false",
  63. "lint": "gulp lint",
  64. "unit": "gulp unit",
  65. "watch": "gulp watch",
  66. "test": "gulp test"
  67. }
  68. }