Skip to content

Commit

Permalink
Add files key to package.json, move jest to dev-dep, add keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
febeling committed Dec 7, 2023
1 parent df33ff2 commit c6d199b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/dist/*.test.js
20 changes: 15 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
"type": "module",
"main": "dist/synopt.js",
"types": "dist/synopt.d.ts",
"files": [
"./dist/synopt.js",
"./dist/synopt.d.ts"
],
"engines": {
"node": ">=14"
},
Expand All @@ -18,9 +22,16 @@
},
"keywords": [
"options",
"option",
"parser",
"argument",
"args",
"argv",
"cli",
"flags",
"shell",
"command"
"command",
"terminal"
],
"author": "Florian Ebeling <[email protected]>",
"homepage": "https://github.com/febeling/synopt",
Expand All @@ -35,9 +46,8 @@
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"typescript": "^5.3.2",
"@jest/globals": "^29.7.0"
}
},
"dependencies": {}
}

0 comments on commit c6d199b

Please sign in to comment.