Skip to content

Commit

Permalink
Update package json (#2)
Browse files Browse the repository at this point in the history
* Add repository to package.json

* 0.1.2
  • Loading branch information
treycucco authored Sep 7, 2023
1 parent 3fa0371 commit 1a5ce31
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@closeio/test-console",
"version": "0.1.1",
"version": "0.1.2",
"description": "Library for handling console logs in tests in a flexible way",
"keywords": [],
"author": "Trey Cucco <[email protected]>",
Expand All @@ -26,12 +26,17 @@
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/closeio/test-console.git"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build",
"check": "npm run typecheck && npm run prettier:check && npm run lint && npm run test:coverage",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
Expand Down

0 comments on commit 1a5ce31

Please sign in to comment.