-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
69 lines (69 loc) · 1.5 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "waterline-sqlite3",
"description": "Waterline Adapter for SQLite3",
"version": "1.0.4",
"author": "Travis Webb <tjwebb@langa.io>",
"url": "http://github.com/waterlinejs/sqlite3-adapter",
"keywords": [
"sqlite",
"sqlite3",
"node orm",
"orm",
"driver",
"es6"
],
"repository": {
"type": "git",
"url": "git://github.com/waterlinejs/sqlite3-adapter.git"
},
"dependencies": {
"knex": "^0.9",
"lodash": "^3.10.0",
"moment": "^2.10.6",
"sqlite3": "^3.1.4",
"waterline-cursor": "0.0.6",
"waterline-errors": "^0.10.1",
"waterline-sequel": "^0.5.0"
},
"devDependencies": {
"babel": "5.8.38",
"gulp": "3.9.1",
"gulp-babel": "5.2.0",
"mocha": "latest",
"waterline-adapter-tests": "^0.12.0"
},
"bundledDependencies": [
"knex",
"lodash",
"moment",
"waterline-cursor",
"waterline-errors",
"waterline-sequel"
],
"scripts": {
"test": "gulp && rm -rf .tmp/ ; NODE_ENV=test node test/integration/runner.js",
"prepublish": "gulp",
"postinstall": "npm run prepublish"
},
"main": "dist/adapter",
"license": "MIT",
"bugs": "https://github.com/waterlinejs/sqlite3-adapter/issues",
"waterlineAdapter": {
"waterlineVersion": ">0.10.0",
"interfaces": [
"associations",
"migratable",
"queryable",
"semantic",
"sql"
],
"features": [
"autoIncrement",
"crossAdapter",
"unique"
]
},
"engines": {
"node": ">= 4.0.0"
}
}