-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "libsql-migrate",
"version": "1.1.4",
"description": "Database migration and seed management for libsql with configurable options.",
"bin": {
"libsql-migrate": "./src/cli/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier . --write",
"lint:eslint": "eslint **/*[.cjs,.js] --ignore-path=.gitignore",
"lint:prettier": "prettier . --check",
"lint": "npm run lint:eslint && npm run lint:prettier"
},
"keywords": [
"configuration",
"database",
"deployment",
"initialization",
"libsql",
"migrate",
"migration",
"seed",
"sqlite",
"turso",
"tursodb"
],
"author": "Travis Horn <travis@travishorn.com> (https://travishorn.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/travishorn/libsql-migrate.git"
},
"bugs": {
"url": "https://github.com/travishorn/libsql-migrate/issues"
},
"homepage": "https://github.com/travishorn/libsql-migrate#readme",
"license": "MIT",
"files": [
"./src/**/*"
],
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.2.5"
},
"dependencies": {
"@libsql/client": "^0.5.6",
"commander": "^12.0.0",
"lodash-es": "^4.17.21",
"mkdirp": "^3.0.1",
"winston": "^3.12.0"
}
}