json-q
Version:
Retrieves values from JSON objects (and JavaScript objects) by css-selector-like query (includes attribute filters and array flattening).
39 lines (38 loc) • 1.1 kB
JSON
{
"author": "Artem Dudkin <sheeva@list.ru>",
"name": "json-q",
"license": "MIT",
"version": "0.1.11",
"repository": {
"type": "git",
"url": "git://github.com/artemdudkin/json-q.git"
},
"main": "index.js",
"scripts": {
"build": "cd browser_build_config && npm i && webpack && cd ..",
"test": "./node_modules/.bin/mocha tests",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports tests",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- tests && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -fr ./coverage"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"webpack": "^1.13.3"
},
"dependencies": {
"clone": "^2.0.0"
},
"keywords": [
"json",
"select",
"selector",
"json select",
"json selector",
"json query",
"json search",
"json filter"
]
}