-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 984 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "mapper-ts",
"version": "2.0.0",
"description": "A convention-based object mapper that utilizes TypeScript decorators to simplify the mapping of objects between themselves.",
"main": "lib-esm/index.js",
"module": "lib-esm/index.js",
"types": "lib-esm/index.d.ts",
"homepage": "https://github.com/matheusb432/mapper-ts",
"repository": {
"type": "git",
"url": "git+https://github.com/matheusb432/mapper-ts.git"
},
"type": "module",
"compilerOptions": {
"esModuleInterop": true
},
"scripts": {
"test": "jest --watch",
"build": "tsc"
},
"keywords": [
"mapper",
"automapper",
"typescript",
"ts"
],
"author": "Matheus Almeida Bastos <matheusalmeidabastos@hotmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}