-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "json-node-normalizer",
"version": "1.0.14-wip",
"description": "NodeJS module that normalize json data types from json schema specifications.",
"contributors": [
{
"name": "json-node-normalizer contributors",
"url": "https://github.com/benjamin-allion/json-type-converter/graphs/contributors"
}
],
"repository": {
"type": "git",
"url": "https://github.com/benjamin-allion/json-node-normalizer.git"
},
"main": "index.js",
"scripts": {
"test": "cross-env JSON_NODE_NORMALIZER_DEBUG=true JSON_NODE_NORMALIZER_LOGGING_LEVEL=debug jest",
"lint": "eslint \"./lib/**/*.js\" \"./config/**/*.js\" \"./tests/**/*.js\"",
"lint:fix": "eslint --fix \"./lib/**/*.js\" \"./config/**/*.js\" \"./tests/**/*.js\"",
"coverage": "cross-env JSON_NODE_NORMALIZER_LOGGING_LEVEL=debug jest --coverage",
"coverage:codacy": "yarn coverage && cat ./coverage/lcov.info | codacy-coverage"
},
"keywords": [
"json",
"transform",
"node",
"type",
"converter",
"normalizer"
],
"author": "ALLION Benjamin, BENBRAHIM Rayed",
"license": "MIT",
"dependencies": {
"json-schema-deref": "^0.5.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"winston": "^3.14.2"
},
"devDependencies": {
"globals": "^15.9.0",
"eslint": "9.9.0",
"@eslint/js": "9.9.0",
"jest": "^29.7.0",
"codacy-coverage": "^3.4.0",
"cross-env": "7.0.3"
},
"engines": {
"node": ">=22.6.0"
}
}