-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 KB
/
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
39
40
41
{
"name": "data-object-mapper",
"version": "1.0.4",
"description": "The data-object-mapper package is a versatile and lightweight client-side data mapping utility for JavaScript and TypeScript. It simplifies the process of mapping data between different object structures within web applications, offering an intuitive and customizable solution for handling data transformations.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "jest --detectOpenHandles",
"build": "tsc",
"publish": "npm run build && npm publish",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoeMansourr/mapper.git"
},
"keywords": [
"mapper",
"object-mapper",
"client-mapper",
"mapster",
"data-object-mapper"
],
"author": "Joe Mansour",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoeMansourr/mapper/issues"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@types/jest": "^29.5.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}