-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 889 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 889 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
30
31
32
33
34
35
36
37
38
39
{
"name": "viceroy-query",
"version": "0.1.0",
"description": "Viceroy ORM's query language implementation",
"main": "./index.js",
"scripts": {
"test": "./node_modules/.bin/tape ./test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Battlefy/Viceroy-Query.git"
},
"keywords": [
"query",
"queries",
"viceroy"
],
"author": "Robert Hurst <robertwhurst@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Battlefy/Viceroy-Query/issues"
},
"homepage": "https://github.com/Battlefy/Viceroy-Query",
"devDependencies": {
"tape": "~2.4.2"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/10..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/5.0.5..latest",
"opera/11.0..latest",
"iphone/6..latest",
"ipad/6..latest"
]
}
}