Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Apr 4, 2024
1 parent 820c847 commit be50717
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2024 Konstantin Wohlwend
Copyright 2024 Stackframe.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
21 changes: 20 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
{
"name": "pgmock",
"version": "1.0.0",
"description": "In-memory Postgres for unit tests",
"description": "In-memory Postgres for unit/E2E tests",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"files": [
"dist"
],
"homepage": "https://stackframe-projects.github.io/pgmock",
"scripts": {
"build": "tsup src/main.ts --sourcemap --dts --splitting --format esm",
"build:watch": "npm run build -- --watch"
"build": "rimraf dist/ && tsup src/main.ts --dts --splitting --format esm",
"build-dev": "npm run build -- --sourcemap",
"build-dev:watch": "npm run build-dev -- --watch"
},
"author": "",
"author": "Stan Wohlwend <n2d4xc@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.2",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
}
Expand Down

0 comments on commit be50717

Please sign in to comment.