-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.85 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": "core-types-json-schema",
"version": "0.0.0-development",
"description": "core-types ⬌ JSON Schema conversion",
"author": "Gustaf Räntilä",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantila/core-types-json-schema/issues"
},
"homepage": "https://github.com/grantila/core-types-json-schema#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {},
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=14.13.1 || >=16.0.0"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.prod.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/grantila/core-types-json-schema"
},
"keywords": [
"core-types",
"type",
"types",
"json",
"schema",
"json-schema",
"typescript"
],
"dependencies": {
"@types/json-schema": "^7.0.12",
"core-types": "^3.1.0",
"jsonpos": "^4.1.2",
"openapi-json-schema": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.2",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"resolver": "ts-jest-resolver",
"extensionsToTreatAsEsm": [
".ts"
],
"testEnvironment": "node",
"coverageReporters": [
"lcov",
"text",
"html"
],
"collectCoverageFrom": [
"<rootDir>/lib/**"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__snapshots__/"
]
},
"packageManager": "[email protected]"
}