package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "jsonpath",
  3. "description": "Query JavaScript objects with JSONPath expressions. Robust / safe JSONPath engine for Node.js.",
  4. "version": "1.1.1",
  5. "author": "david@fmail.co.uk",
  6. "scripts": {
  7. "prepublishOnly": "node lib/aesprim.js > generated/aesprim-browser.js",
  8. "test": "mocha -u tdd test && jscs lib && jshint lib",
  9. "generate": "node bin/generate_parser.js > generated/parser.js"
  10. },
  11. "dependencies": {
  12. "esprima": "1.2.2",
  13. "static-eval": "2.0.2",
  14. "underscore": "1.12.1"
  15. },
  16. "browser": "./jsonpath.js",
  17. "alias": {
  18. "./lib/aesprim.js": "./generated/aesprim-browser.js"
  19. },
  20. "devDependencies": {
  21. "grunt": "0.4.5",
  22. "grunt-browserify": "3.8.0",
  23. "grunt-cli": "0.1.13",
  24. "grunt-contrib-uglify": "0.9.1",
  25. "jison": "0.4.13",
  26. "jscs": "1.10.0",
  27. "jshint": "2.6.0",
  28. "mocha": "2.1.0"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/dchester/jsonpath"
  33. },
  34. "keywords": [
  35. "JSONPath",
  36. "jsonpath",
  37. "json-path",
  38. "object",
  39. "traversal",
  40. "json",
  41. "path",
  42. "data structures"
  43. ],
  44. "license": "MIT"
  45. }