-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.82 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
82
{
"name": "json-strictify",
"version": "8.0.4",
"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": "[email protected]"
},
"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:prettier && npm run format:eslint && npm run format:package-json",
"format:eslint": "eslint --ext=ts --fix .",
"format:package-json": "sort-package-json",
"format:prettier": "prettier --write .",
"jest": "rm -rf coverage && jest",
"lint": "npm run lint:tsc && npm run lint:eslint && npm run lint:prettier && npm run lint:package-json && npm run lint:lockfile",
"lint:eslint": "eslint --max-warnings=0 --ext=ts .",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:package-json": "sort-package-json --check",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"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": {
"@types/json-pointer": "1.0.34",
"@types/lodash.noop": "3.0.9",
"@types/node": "22.10.6",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.1",
"lockfile-lint": "4.14.0",
"lodash.noop": "3.0.1",
"prettier": "3.4.2",
"sort-package-json": "2.13.0",
"tsconfig-paths": "4.2.0",
"tsx": "4.19.2",
"type-fest": "4.32.0",
"typescript": "5.7.3"
},
"engines": {
"node": ">=14"
}
}