-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "seneca-sqlite-store",
"version": "0.0.3",
"description": "SQLite database layer for Seneca framework",
"main": "lib/sqlite-store.js",
"scripts": {
"test": "./node_modules/@hapi/lab/bin/lab -P '\\.test' test -r console -v -t 87",
"test-some": "./node_modules/@hapi/lab/bin/lab -P '\\.test' test -r console -v -g ",
"migrate-for-test": "sqlite3 -init ./test/support/db/schema.sql ./test/support/db/senecatest.db '.exit'",
"lint": "./node_modules/@hapi/lab/bin/lab -dL"
},
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-sqlite-store.git"
},
"keywords": [
"seneca",
"sqlite",
"store",
"plugin"
],
"author": "Marius Ursache",
"contributors": [
"Peter Elger <[email protected]> (http://peterelger.com/)",
"Vito Tardia (http://vito.tardia.me)",
"Matthew O'Connor (https://github.com/matthewoconnor-development)"
],
"license": "MIT",
"homepage": "https://github.com/senecajs/seneca-sqlite-store",
"bugs": "https://github.com/senecajs/seneca-sqlite-store/issues",
"dependencies": {
"eraro": "2.1.0",
"lodash": "^4.3.0",
"node-uuid": "*",
"sqlite3": ">=2.1.5"
},
"devDependencies": {
"@hapi/code": "8.0.3",
"@hapi/lab": "24.2.1",
"eslint-config-seneca": "1.x.x",
"eslint-plugin-hapi": "4.x.x",
"eslint-plugin-standard": "1.x.x",
"seneca": "3.23.3",
"seneca-entity": "14.0.0",
"seneca-store-test": "4.0.2"
},
"files": [
"README.md",
"LICENSE.txt",
"lib/sqlite-store.js"
]
}