-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 762 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"author": "Matt McKegg <matt@wetsand.co.nz> (http://twitter.com/MattMcKegg)",
"name": "json-query",
"description": "Retrieves values from JSON objects for data binding. Offers params, nested queries, deep queries, custom reduce/filter functions and simple boolean logic. Browserify compatible.",
"version": "0.2.0",
"homepage": "http://github.com/mmckegg/json-query",
"repository": {
"type": "git",
"url": "git://github.com/mmckegg/json-query.git"
},
"main": "index.js",
"scripts": {
"test": "tap test/*.js --tap"
},
"dependencies": {},
"devDependencies": {
"tap": "*"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"keywords": [
"data binding",
"filter",
"json",
"query"
]
}