forked from Kauto/better-sqlite3-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "better-sqlite3-helper",
"version": "3.1.1",
"description": "A wrapper library that eases the work with better-sqlite3 with some new functions and a migration-system",
"main": "src/database.js",
"scripts": {
"test": "cross-env NODE_ENV=test ./node_modules/mocha/bin/_mocha --ui bdd --recursive ./test"
},
"author": "Markus Madeja",
"repository": "Kauto/better-sqlite3-helper",
"homepage": "http://intergenies.com/programs/nodejs/better-sqlite3-helper",
"license": "MIT",
"keywords": [
"sqlite3",
"sqlite",
"sql",
"database",
"save",
"custom",
"helper",
"better-sqlite3"
],
"dependencies": {
"better-sqlite3": "^7.1.1",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.3"
},
"optionalDependencies": {
"app-root-path": "^3.0.0"
}
}