Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tqindia authored Sep 10, 2024
1 parent 9401eb0 commit 5e5f121
Showing 1 changed file with 23 additions and 13 deletions.
36 changes: 23 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
{
"name": "terraform-type-parser",
"version": "1.0.0",
"description": "A library to convert Terraform types to readable formats.",
"main": "src/converter.ts",
"scripts": {
"test": "tsc && jest"
},
"devDependencies": {
"typescript": "^4.0.0",
"jest": "^27.0.0",
"@types/jest": "^27.0.0"
}
"name": "terraform-type-parser",
"version": "1.0.0",
"description": "A library to convert Terraform types to readable formats.",
"main": "dist/converter.js",
"types": "dist/converter.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"typescript": "^4.0.0",
"jest": "^27.0.0",
"@types/jest": "^27.0.0",
"@types/node": "^18.0.0"
},
"dependencies": {},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}

0 comments on commit 5e5f121

Please sign in to comment.