mapper-factory 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +30 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Mapper-Factory
2
+ Mapper-Factory is a TypeScript library that provides a simple and easy-to-use way to map objects from one type to another. With just a few lines of code, you can convert complex, nested objects into the desired format.
3
+
4
+ ## Installation
5
+ To install the package, you can use npm by running the following command:
6
+
7
+ <code>npm i mapper-factory</code>
8
+
9
+ Or using yarn
10
+
11
+ <code>yarn add mapper-factory</code>
12
+
13
+ ## Usage
14
+ ### Mapping simple objects
15
+ - TODO
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "mapper-factory",
3
+ "version": "1.0.0",
4
+ "description": "mapper for typescript object",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "/dist"
9
+ ],
10
+ "scripts": {
11
+ "build": "npx tsc",
12
+ "dev": "npx tsc --watch"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/lucaAngrisani/mapper-factory.git"
17
+ },
18
+ "keywords": [
19
+ "mapper-ts"
20
+ ],
21
+ "author": "lucaAngrisani Angrigo",
22
+ "license": "ISC",
23
+ "bugs": {
24
+ "url": "https://github.com/lucaAngrisani/mapper-factory/issues"
25
+ },
26
+ "homepage": "https://github.com/lucaAngrisani/mapper-factory#readme",
27
+ "devDependencies": {
28
+ "typescript": "^4.9.4"
29
+ }
30
+ }