-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.87 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.87 KB
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
70
71
72
73
74
75
76
77
78
{
"name": "sails-sqlite",
"version": "0.2.6",
"description": "SQLite adapter for Sails/Waterline",
"main": "lib",
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "npm run lint && npm run custom-tests && npm run adapter-tests",
"custom-tests": "node tests/",
"adapter-tests": "rm -rf .tmp && node tests/runner.js",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git://github.com/sailscastshq/sails-sqlite.git"
},
"bugs": "https://github.com/sailscastshq/sails-sqlite/issues",
"waterlineAdapter": {
"waterlineVersion": "~0.13.0",
"interfaces": [
"semantic",
"queryable",
"migratable",
"associations",
"sql"
],
"features": [
"crossAdapter",
"unique",
"autoIncrement",
"schemas"
]
},
"keywords": [
"sqlite",
"sqlite3",
"adapter",
"sails",
"sails.js",
"waterline",
"orm",
"database-adapter"
],
"author": "Kelvin Omereshone <kelvin@sailscasts.com>",
"license": "MIT",
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^11.7.2",
"prettier": "3.2.5",
"waterline-adapter-tests": "^1.0.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"better-sqlite3": "^12.2.0",
"flaverr": "^1.10.0",
"machine": "^15.2.3",
"waterline-utils": "^1.4.5"
},
"machinepack": {
"friendlyName": "SQLite",
"extendedDescription": "Uses the Node.js better-sqlite3 driver located at https://npmjs.com/package/better-sqlite3",
"moreInfoUrl": "https://github.com/WiseLibs/better-sqlite3",
"implements": [
"connectable",
"modeled",
"migratable"
],
"machineDir": "lib/private/machines/",
"exportStyle": "dryDictionary"
}
}