-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.03 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
54
55
56
57
{
"name": "matchme",
"description": "Simple Object Query Language",
"author": "Damon Oehlman <damon.oehlman@gmail.com>",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "git://github.com/DamonOehlman/matchme.git"
},
"bugs": {
"url": "http://github.com/DamonOehlman/matchme/issues"
},
"scripts": {
"test": "$(npm bin)/tape test/all.js",
"gendocs": "gendocs > README.md"
},
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"geonames": "^0.2.1",
"pull-stream": "^2.23.0",
"tape": "^2.12.0",
"underscore": "^1.6.0"
},
"keywords": [
"query",
"match",
"filter"
],
"license": "MIT",
"dependencies": {},
"testling": {
"files": "test/all.js",
"browsers": {
"ie": [
"latest"
],
"ff": [
"latest",
"nightly"
],
"chrome": [
"latest",
"canary"
],
"opera": [
"latest",
"next"
],
"safari": [
"latest"
]
}
}
}