-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.33 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
{
"name": "sqlite-auto-migrator",
"description": "Simple automated SQLite database migration tool which works well with CI/CD pipelines and VCS.",
"version": "1.3.0",
"author": "Alexander Metzger <[email protected]> (https://sandergi.github.io/)",
"bin": {
"sam": "./lib/cli.js"
},
"bugs": {
"url": "https://github.com/SanderGi/sqlite-auto-migrator/issues"
},
"config": {
"main": "index.mjs"
},
"dependencies": {
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/node": "^20.11.30",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"fixpack": "^4.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"typescript": "^5.4.4"
},
"engines": {
"node": ">= 18.17.0"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"index.mjs",
"lib",
"types"
],
"homepage": "https://github.com/SanderGi/sqlite-auto-migrator#readme",
"keywords": [
"database",
"migrations",
"sqlite"
],
"license": "MIT",
"lint-staged": {
"*.js,*.mjs,*.cjs": "npx eslint --fix",
"*": "npx prettier --write --ignore-unknown",
"package.json": "npx fixpack"
},
"main": "index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/SanderGi/sqlite-auto-migrator.git"
},
"scripts": {
"badges": "node scripts/badges.mjs",
"build": "npm run types && npm run badges",
"format": "(npx fixpack || true) && (npx eslint . --fix || true) && npx prettier . --write",
"lint": "npx eslint-config-prettier $npm_package_config_main && npx eslint $npm_package_config_main && npx prettier . --check",
"prepack": "npm run format && npm run build && npm run lint && npm test && npm run badges",
"prepare": "husky",
"test": "node --test --trace-warnings --test-concurrency 1 --experimental-test-coverage --test-reporter=spec --test-reporter=tap --test-reporter-destination=stdout --test-reporter-destination=tap.info ./test/test_*.mjs",
"types": "npx -p typescript tsc $npm_package_config_main --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"types": "./types/index.d.mts"
}