-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@wandeber/agnese",
"version": "0.6.4",
"description": "This project will help you to map data easily based on a configuration in JSON/YAML.",
"license": "CC BY-ND 4.0",
"author": "Bernardo A. Siverio [wandeber] <berthewanderer@gmail.com> (https://blog.wande.dev)",
"homepage": "https://github.com/wandeber/agnese",
"repository": {
"type": "git",
"url": "https://github.com/wandeber/agnese"
},
"bugs": {
"url": "https://github.com/wandeber/agnese/issues"
},
"keywords": [
"map",
"map data",
"mapper",
"mapping",
"mappings",
"data mapper",
"data-mapper",
"object mapper",
"object-mapper",
"map array",
"loop",
"conditions",
"conditional",
"if",
"iterate",
"array",
"json",
"yaml",
"yml",
"schema",
"open",
"open source",
"agnese"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist/**/*",
"other-dependencies/**/*",
"LICENSE",
"README.md",
"schema/**/*"
],
"dependencies": {
"quara": "^0.10.11"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"yaml": "^2.2.2"
},
"scripts": {
"rebuild": "npm run clean && npm run build",
"build": "npm run build-tsc",
"build-prod": "npm run build && npm run check",
"preversion": "npm run check",
"check": "npm test && npm run lint",
"clean": "rm -rf ./dist && rm -rf ./dist-npm",
"build-tsc": "npx tsc -p ./tsconfig.json",
"lint": "npx eslint ./src/**/*.ts",
"test": "npx jest --detectOpenHandles --forceExit --coverage --verbose",
"gen-dist-npm": "./scripts/generate-dist-npm.sh"
},
"engines": {
"node": ">=18.17.1",
"npm": ">=9.6.7"
}
}