-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
46 lines (46 loc) · 1016 Bytes
/
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
{
"name": "anydb-sql",
"version": "0.7.1",
"description": "Minimal ORM for mysql, postgresql and sqlite with complete arbitrary SQL query support (based on brianc's query builder sql)",
"main": "anydb-sql.js",
"scripts": {
"test": "tap test/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/doxout/anydb-sql.git"
},
"typings": "./d.ts/anydb-sql-commonjs.d.ts",
"author": "spion",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"any",
"db",
"sql",
"orm",
"postgres",
"pg",
"postgresql",
"mysql",
"sqlite"
],
"bugs": {
"url": "https://github.com/doxout/anydb-sql/issues"
},
"directories": {
"test": "test"
},
"dependencies": {
"any-db": "^2.1.0",
"any-db-mysql": "^2.1.2",
"any-db-postgres": "^2.1.3",
"any-db-transaction": "^2.2.1",
"bluebird": "^2.3.6",
"node-sql-2": "^0.78.0",
"sqlite3": "^4.0.4"
},
"devDependencies": {
"blue-tape": "^0.1.7"
}
}