-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.6 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
{
"name": "semgrator",
"version": "0.3.0",
"description": "Run migrations code based on semantic version rules",
"scripts": {
"test": "borp --coverage",
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"lint": "prettier --check .",
"lint:fix": "prettier -w ."
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/semgrator.git"
},
"keywords": [
"migrations",
"migration",
"semantic",
"version",
"semver"
],
"author": "Matteo Collina <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/platformatic/semgrator/issues"
},
"homepage": "https://github.com/platformatic/semgrator#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@matteo.collina/tspl": "^0.1.1",
"@types/node": "^22.0.0",
"@types/rfdc": "^1.2.0",
"@types/semver": "^7.5.8",
"borp": "^0.19.0",
"desm": "^1.3.1",
"pino": "^8.19.0",
"pino-test": "^1.0.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"prettier": {
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/semgrator.js",
"types": "./dist/semgrator.d.ts",
"dependencies": {
"abstract-logging": "^2.0.1",
"rfdc": "^1.3.1",
"semver": "^7.6.0"
}
}