package.json
1 { 2 "name": "jmespath", 3 "description": "JMESPath implementation in javascript", 4 "version": "0.15.0", 5 "author": { 6 "name": "James Saryerwinnie", 7 "email": "js@jamesls.com", 8 "url": "http://jamesls.com/" 9 }, 10 "homepage": "https://github.com/jmespath/jmespath.js", 11 "contributors": [], 12 "devDependencies": { 13 "grunt": "^0.4.5", 14 "grunt-contrib-jshint": "^0.11.0", 15 "grunt-contrib-uglify": "^0.11.1", 16 "grunt-eslint": "^17.3.1", 17 "mocha": "^2.1.0" 18 }, 19 "dependencies": {}, 20 "main": "jmespath.js", 21 "directories": { 22 "test": "test" 23 }, 24 "engines": { 25 "node": ">= 0.6.0" 26 }, 27 "repository": { 28 "type": "git", 29 "url": "git://github.com/jmespath/jmespath.js" 30 }, 31 "bugs": { 32 "url": "http://github.com/jmespath/jmespath.js/issues", 33 "mail": "" 34 }, 35 "licenses": [ 36 { 37 "type": "Apache 2.0", 38 "url": "http://github.com/jmespath/jmespath.js/raw/master/LICENSE" 39 } 40 ], 41 "keywords": [ 42 "jmespath", 43 "jsonpath", 44 "json", 45 "xpath" 46 ], 47 "scripts": { 48 "test": "mocha test/" 49 } 50 }