generated from voxpelli/node-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "umzeption",
"version": "0.4.1",
"description": "A recursive umzug extension",
"homepage": "http://github.com/voxpelli/umzeption",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/umzeption.git"
},
"keywords": [
"umzug",
"migration",
"database"
],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": ">=18.6.0"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"/index.js",
"/index.d.ts",
"/index.d.ts.map",
"lib/*.js",
"lib/*.d.ts",
"lib/*.d.ts.map",
"lib/*/*.js",
"lib/*/*.d.ts",
"lib/*/*.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check -i @voxpelli/eslint-config -i eslint -i npm-run-all2",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'",
"check": "run-s clean && run-p check:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'index.d.ts')",
"clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')",
"clean": "run-p clean:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:node": "c8 --reporter=lcov --reporter text node --test",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"peerDependencies": {
"@types/pg": "^8.10.2",
"pg": "^8.11.2",
"umzug": "^3.8.1"
},
"peerDependenciesMeta": {
"@types/pg": {
"optional": true
},
"pg": {
"optional": true
}
},
"dependencies": {
"@voxpelli/type-helpers": "^3.4.0",
"@voxpelli/typed-utils": "^1.1.0",
"globby": "^14.0.1",
"plugin-importer": "^0.1.1"
},
"devDependencies": {
"@types/node": "^18.19.67",
"@types/pg": "^8.11.10",
"@types/sinon": "^17.0.3",
"@voxpelli/eslint-config": "^22.1.0",
"@voxpelli/tsconfig": "^15.1.0",
"c8": "^10.1.2",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"installed-check": "^9.3.0",
"knip": "^5.38.3",
"npm-run-all2": "^7.0.1",
"pg": "^8.13.1",
"sinon": "^19.0.2",
"type-coverage": "^2.29.7",
"typescript": "~5.7.2",
"umzug": "^3.8.2",
"validate-conventional-commit": "^1.0.4"
}
}