-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.57 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
{
"name": "@nanocollective/json-up",
"version": "0.2.4",
"description": "A TypeScript JSON migration tool with Zod schema validation",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"test:all": "./scripts/test.sh",
"test:ava": "ava",
"test:ava:coverage": "c8 ava",
"test:format": "biome check .",
"test:types": "tsc --noEmit",
"test:lint": "biome lint .",
"test:knip": "knip",
"test:audit": "npm audit --audit-level=high",
"test:security": "semgrep scan --config auto --error",
"format": "biome check --write .",
"prepublishOnly": "npm run build && npm run test:all"
},
"peerDependencies": {
"zod": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/node": "^26.1.1",
"ava": "^8.0.0",
"c8": "^12.0.0",
"knip": "^6.7.0",
"tsx": "^4.21.0",
"typescript": "^7.0.2",
"zod": "^4.3.6"
},
"c8": {
"reporter": [
"text",
"json-summary",
"lcov"
],
"lines": 80,
"functions": 0,
"branches": 0,
"statements": 0
},
"ava": {
"extensions": [
"ts"
],
"nodeArguments": [
"--import=tsx"
],
"files": [
"src/**/*.spec.ts"
],
"workerThreads": false
},
"keywords": [
"json",
"migration",
"zod",
"schema",
"validation",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nano-collective/json-up.git"
}
}