package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "call-matcher",
  3. "description": "ECMAScript CallExpression matcher made from function/method signature",
  4. "version": "1.1.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/call-matcher/issues",
  11. "dependencies": {
  12. "core-js": "^2.0.0",
  13. "deep-equal": "^1.0.0",
  14. "espurify": "^1.6.0",
  15. "estraverse": "^4.0.0"
  16. },
  17. "devDependencies": {
  18. "babel-types": "^6.3.21",
  19. "babylon": "^6.3.21",
  20. "browserify": "^13.0.0",
  21. "derequire": "^2.0.2",
  22. "dereserve": "^1.0.0",
  23. "esprima": "^4.0.0",
  24. "jshint": "^2.8.0",
  25. "licensify": "^3.1.1",
  26. "mocha": "^5.0.0",
  27. "package-json-filterify": "^1.0.4"
  28. },
  29. "files": [
  30. "CHANGELOG.md",
  31. "MIT-LICENSE.txt",
  32. "README.md",
  33. "index.js",
  34. "dist/call-matcher.js"
  35. ],
  36. "homepage": "https://github.com/twada/call-matcher",
  37. "keywords": [
  38. "ast",
  39. "estree",
  40. "ecmascript"
  41. ],
  42. "license": "MIT",
  43. "main": "index.js",
  44. "repository": {
  45. "type": "git",
  46. "url": "git://github.com/twada/call-matcher.git"
  47. },
  48. "scripts": {
  49. "dist": "mkdir -p dist && browserify index.js --plugin licensify --global-transform package-json-filterify --standalone CallMatcher | dereserve | derequire > ./dist/call-matcher.js",
  50. "lint": "jshint index.js",
  51. "preversion": "npm test",
  52. "test": "npm run lint && mocha test",
  53. "version": "npm run dist && git add -A dist"
  54. }
  55. }