forked from nvdnkpr/json-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"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.5.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"
},
"devDependencies": {
"tape": "*",
"es5-shim": "~2.1.0"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"keywords": [
"data binding",
"filter",
"json",
"query"
],
"testling": {
"files": "test/*.js",
"browsers": [
"chrome/20.0",
"chrome/25.0",
"chrome/latest",
"chrome/canary",
"firefox/3.6",
"firefox/20.0",
"firefox/latest",
"firefox/nightly",
"opera/12.0",
"opera/latest",
"safari/4.0",
"safari/latest",
"opera/next",
"iphone/6.0..latest",
"ipad/6.0..latest",
"safari/6.0..latest",
"android-browser/4.2..latest",
"iexplore/6.0",
"iexplore/9.0..latest"
]
}
}