Skip to content

Commit

Permalink
chore: created package.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
angelxmoreno committed Jan 25, 2024
1 parent 170c8b1 commit f78334f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.test.js
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "axios-date-transformer",
"version": "0.0.0",
"description": "An Axios transformer for seamlessly converting ISO 8601 formatted date strings with millisecond precision to JavaScript Date objects. Simplify handling of Date objects in JSON responses with this lightweight utility.",
"keywords": ["axios", "transformer", "date", "date-fns", "json", "iso8601"],
"homepage": "https://github.com/angelxmoreno/axios-date-transformer",
"files": [],
"bugs": {
"url": "https://github.com/angelxmoreno/axios-date-transformer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angelxmoreno/axios-date-transformer.git"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"author": "Angel S. Moreno <angelxmoreno@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {}
}

0 comments on commit f78334f

Please sign in to comment.