This repository was archived by the owner on Apr 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 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
{
"name": "json-strictify",
"version": "8.0.6",
"description": "Safely serialize a value to JSON without unintended loss of data or going into an infinite loop due to circular references.",
"keywords": [
"JSON",
"debugging",
"validation",
"stringify",
"strict"
],
"homepage": "https://github.com/pigulla/json-strictify",
"bugs": {
"url": "https://github.com/pigulla/json-strictify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pigulla/json-strictify.git"
},
"license": "MIT",
"author": {
"name": "Raphael Pigulla",
"email": "pigulla@four66.com"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"!dist/*.tsbuildinfo",
"CHANGELOG.md"
],
"scripts": {
"audit": "npm audit && npm audit signatures",
"build": "rm -rf dist && tsc",
"build:ci": "rm -rf dist lcov.info && tsc --project test",
"ci": "npm run lint && npm run build:ci && npm run test:unit:ci && npm run audit",
"format": "npm run format:biome && npm run format:package-json",
"format:biome": "biome format --fix",
"format:package-json": "sort-package-json",
"jest": "rm -rf coverage && jest",
"lint": "npm run lint:tsc && npm run lint:biome && npm run lint:package-json && npm run lint:lockfile",
"lint:biome": "biome check",
"lint:lockfile": "lockfile-lint",
"lint:package-json": "sort-package-json --check",
"lint:tsc": "tsc --noEmit --project tsconfig.json",
"prepublishOnly": "npm ci && npm test && npm run build",
"test": "npm run lint && npm run test:unit && npm run audit",
"test:unit": "node --import tsx --test ./test/*test.ts",
"test:unit:ci": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info ./dist/test/*test.js"
},
"dependencies": {
"json-pointer": "0.6.2",
"ts-custom-error": "3.3.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/json-pointer": "1.0.34",
"@types/lodash.noop": "3.0.9",
"@types/node": "25.6.0",
"lockfile-lint": "5.0.0",
"lodash.noop": "3.0.1",
"sort-package-json": "3.6.1",
"tsconfig-paths": "4.2.0",
"tsx": "4.21.0",
"type-fest": "5.5.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=14"
}
}