-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 KB
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
{
"name": "migrate-sql",
"version": "1.0.0",
"description": "Zero-dependency SQL migration runner. Plain SQL files, database-agnostic, with CLI.",
"author": "Jorge Morais",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"migrate-sql": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "node --import tsx --test tests/*.test.ts",
"lint": "eslint src/ tests/",
"audit:security": "npm audit --audit-level=high",
"check": "npm run build && npm run lint && npm test && npm run audit:security",
"prepublishOnly": "npm run check"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.0.0",
"eslint": "^9.39.4",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.0"
},
"keywords": [
"migration",
"sql",
"database",
"postgres",
"sqlite",
"schema",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/mopanc/migrate-sql"
},
"engines": {
"node": ">=18"
}
}