-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (58 loc) · 1.53 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
{
"version": "0.0.1",
"name": "schemaing",
"description": "Schema validation for parsed JSON",
"keywords": [
"scheme",
"schema",
"validate",
"validation",
"validator",
"compare"
],
"homepage": "https://github.com/crowbartools/schemaing#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/crowbartools/schemaing.git"
},
"bugs": {
"url": "https://github.com/crowbartools/schemaing/issues"
},
"author": "CrowbarTools (https://discord.gg/DegW792)",
"license": "ISC",
"source": "./src/index.ts",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"types": "./dist/src/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"scripts": {
"test": "jest",
"build": "microbundle --target=node --format=modern,cjs"
},
"devDependencies": {
"jest": "29.1.1",
"microbundle": "^0.15.1",
"ts-jest": "29.1.1",
"typescript": "^5.3.3"
},
"jest": {
"cache": false,
"preset": "ts-jest/presets/default-esm",
"collectCoverage": true,
"coverageDirectory": "coverage",
"testEnvironment": "node",
"testMatch": [
"**/*.spec.ts"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{ "diagnostics": { "ignoreCodes": [ "TS151001" ] } }
]
}
}
}