-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
56 lines (56 loc) · 1.2 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
{
"name": "sql-bricks",
"version": "3.0.1",
"author": "Peter Rust <[email protected]>",
"description": "Transparent, Schemaless SQL Generation",
"homepage": "http://csnw.github.io/sql-bricks",
"bugs": "https://github.com/CSNW/sql-bricks/issues",
"scripts": {
"prepublish": "node tests/gen-tests.js",
"test": "mocha tests/tests.js tests/doctests.js && mocha tests/tests.js tests/doctests.js --empty-extension"
},
"main": "sql-bricks.js",
"types": "sql-bricks.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CSNW/sql-bricks.git"
},
"keywords": [
"sql",
"generation",
"generate",
"query",
"pg",
"postgres",
"sqlite",
"builder",
"select",
"insert",
"update",
"delete"
],
"engines": {
"node": "*"
},
"dependencies": {},
"devDependencies": {
"mocha": "^6.2.2"
},
"license": "MIT",
"testling": {
"html": "browser-tests.html",
"browsers": [
"chrome/29.0",
"iexplore/8.0",
"iexplore/9.0",
"iexplore/10.0",
"firefox/4.0",
"firefox/6.0",
"firefox/24.0",
"safari/6.0",
"iphone/6.0",
"ipad/6.0",
"android-browser/4.2"
]
}
}