-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "@open-fidias/marv-better-sqlite3-driver",
"version": "1.0.2",
"description": "A sqlite marv driver implementation using better-sqlite3",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "node test/suite.js",
"prepush": "npm run lint && npm test"
},
"keywords": [
"marv",
"database",
"migration",
"migrate",
"sqlite3"
],
"author": "Átila Camurça <camurca.home@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/open-fidias/marv-better-sqlite3-driver.git"
},
"bugs": {
"url": "https://github.com/open-fidias/marv-better-sqlite3-driver/issues"
},
"homepage": "https://github.com/open-fidias/marv-better-sqlite3-driver#readme",
"dependencies": {
"better-sqlite3": "^5.4.0",
"debug": "^4.1.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-imperative": "^2.1.0",
"eslint-plugin-imperative": "^2.1.0",
"hath": "^1.0.1",
"hath-assert": "^0.2.0",
"hath-report-spec": "^0.1.0",
"marv": "^3.1.0",
"marv-compliance-tests": "^3.0.0",
"np": "^5.2.1",
"nyc": "^15.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}