-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mapstronaut",
"version": "2.2.0",
"description": "A full-featured JavaScript object mapper",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"scripts": {
"format": "prettier --write src/ test/ docs/ README.md",
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "mocha ./test/**/*.test.ts",
"coverage": "c8 mocha ./test/**/*.test.ts",
"prebenchmark": "npm run build",
"benchmark": "node dist/benchmark.js",
"pretest:docs": "npm run build",
"test:docs": "node dist/src/tools/test-docs.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jprevo/mapstronaut.git"
},
"keywords": [
"object-mapper",
"mapping",
"automapping",
"object",
"data transformation",
"mapper",
"jsonpath",
"transform"
],
"author": "Jonathan Prevost",
"license": "MIT",
"bugs": {
"url": "https://github.com/jprevo/mapstronaut/issues"
},
"homepage": "https://github.com/jprevo/mapstronaut#readme",
"devDependencies": {
"@types/jsonpath-plus": "^5.0.5",
"@types/mocha": "^10.0.10",
"@types/node": "^24.1.0",
"c8": "^10.1.3",
"mocha": "^11.7.1",
"prettier": "3.6.2",
"tinybench": "^4.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"dot-prop": "^9.0.0",
"jsonpath-plus": "^10.3.0"
}
}