-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 912 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
{
"name": "mapify-ts",
"version": "0.0.2",
"description": "Mapify is a class that provides methods to serialize and deserialize objects supporting Map.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idemax/mapify-ts.git"
},
"author": "Marcelo Lourencini Filho (Idemax)",
"license": "MIT",
"bugs": {
"url": "https://github.com/idemax/mapify-ts/issues"
},
"homepage": "https://github.com/idemax/mapify-ts#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}