-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "marv",
"version": "6.1.0",
"description": "A programmatic database migration tool with plugable drivers for mysql, postgres, mssql, sqlite and oracle",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"prepare": "husky install"
},
"author": "GuideSmiths Ltd",
"license": "ISC",
"dependencies": {
"async": "^3.2.4",
"debug": "^4.3.1",
"lodash": "^4.17.21",
"xregexp": "^5.0.2"
},
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^6.0.0",
"lint-staged": "^12.1.2",
"nyc": "^15.1.0",
"prettier": "2.5.0",
"zunit": "^3.2.1"
},
"keywords": [
"marv",
"database",
"db",
"migration",
"migrate",
"postgres",
"postgresql",
"mysql",
"sqlite",
"sqlite3",
"mssql",
"sql server",
"microsoft sql server",
"oracle",
"oracledb"
],
"directories": {
"test": "test"
},
"engines": {
"node": ">=12.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.js": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/marv.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/marv/issues"
},
"homepage": "https://guidesmiths.github.io/marv/",
"zUnit": {
"pollute": true
}
}