-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.19 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "core-types-suretype",
"version": "0.0.0-development",
"description": "core-types ⬌ SureType validator conversion",
"author": "Gustaf Räntilä",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantila/core-types-suretype/issues"
},
"homepage": "https://github.com/grantila/core-types-suretype#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 && yarn build:cpjs",
"build:cpjs": "cp lib/read-exports/*.js dist/read-exports",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/grantila/core-types-suretype"
},
"keywords": [
"suretype",
"type",
"types",
"core-types",
"generic",
"typescript",
"json",
"jsonschema"
],
"dependencies": {
"@types/json-schema": "^7.0.11",
"core-types": "^3.0.0",
"core-types-json-schema": "^2.1.0",
"core-types-ts": "^4.0.1",
"json-schema-cycles": "^3.0.0",
"jsonpos": "^4.1.2",
"openapi-json-schema": "^2.0.0",
"suretype": "^3.2.1",
"toposort": "^2.0.2",
"typescript": "^5.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.5.0",
"@types/toposort": "^2.0.3",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.5.0",
"rimraf": "^4.4.0",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.9.1"
},
"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__/",
"/read-exports/",
"/test/"
]
},
"packageManager": "yarn@3.2.4"
}