package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "parse-code-context",
  3. "description": "Parse code context in a single line of javascript, for functions, variable declarations, methods, prototype properties, prototype methods etc.",
  4. "version": "0.2.2",
  5. "homepage": "https://github.com/jonschlinkert/parse-code-context",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/parse-code-context",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/parse-code-context/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "engines": {
  16. "node": ">=0.10.0"
  17. },
  18. "scripts": {
  19. "test": "mocha"
  20. },
  21. "devDependencies": {
  22. "gulp": "^3.9.0",
  23. "gulp-eslint": "^1.0.0",
  24. "gulp-format-md": "^0.1.4",
  25. "gulp-istanbul": "^0.10.2",
  26. "gulp-mocha": "^2.1.3",
  27. "mocha": "*",
  28. "should": "*"
  29. },
  30. "keywords": [
  31. "args",
  32. "arguments",
  33. "code",
  34. "code-context",
  35. "context",
  36. "declaration",
  37. "function",
  38. "method",
  39. "parse",
  40. "property",
  41. "prototype",
  42. "statement"
  43. ],
  44. "verb": {
  45. "plugins": [
  46. "gulp-format-md"
  47. ],
  48. "related": {
  49. "list": [
  50. "code-context",
  51. "strip-comments",
  52. "snapdragon"
  53. ]
  54. }
  55. }
  56. }