forked from balderdashy/sails-adapter-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
executable file
·54 lines (54 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
{
"name": "sails-sqlite3",
"version": "0.1.3",
"description": "Waterline Adapter for SQLite in Sails.js",
"main": "lib/adapter.js",
"repository": {
"type": "git",
"url": "https://github.com/AndrewJo/sails-sqlite3.git"
},
"keywords": [
"orm",
"waterline",
"sails",
"sailsjs",
"sails.js",
"sqlite"
],
"contributors": [
{
"name": "Andrew Jo",
"email": "[email protected]>"
},
{
"name": "Kevin C. Gall",
"email": "[email protected]"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"@sailshq/lodash": "^3.10.3",
"sqlite3": "^4.1.0",
"waterline-errors": "^0.10.1"
},
"devDependencies": {
"mocha": "^6.2.0",
"waterline-adapter-tests": "^1.0.1"
},
"scripts": {
"test": "node test/runner.js"
},
"sails": {
"adapter": {
"type": "sqlite3",
"sailsVersion": "^1.0.0",
"implements": [
"semantic",
"queryable",
"associations",
"migratable"
]
}
}
}