forked from lucagez/slow-json-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "@darkgl/slow-json-stringify",
"version": "2.1.1",
"description": "The fastest JSON stringifier",
"main": "dist/sjs.js",
"types": "dist/sjs.d.ts",
"type": "module",
"scripts": {
"ci": "npm run build && npm run check && npm run check-exports && npm run test",
"lint": "npx @biomejs/biome lint --write ./src ./test",
"format": "npx @biomejs/biome format --write ./src ./test",
"check": "npx @biomejs/biome check --write ./src ./test",
"build": "tsc --build",
"prepare": "husky",
"test": "npm run build && node --import tsx --test ./test/*test.ts",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"benchmark": "cd benchmark && sh run.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarkGL/slow-json-stringify.git"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.10",
"@types/chai": "^5.0.1",
"@types/chai-spies": "^1.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/sinon": "^17.0.3",
"benchmark": "^2.1.4",
"chai": "^5.1.2",
"chai-spies": "^1.1.0",
"fast-json-stringify": "^6.0.0",
"husky": "^9.1.7",
"mocha": "^10.8.2",
"sinon": "^19.0.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"keywords": [
"stringify",
"json",
"deterministic",
"safe",
"serialize",
"hash",
"stringification",
"fast",
"performance"
],
"author": "Rafał Więcek <[email protected]> (https://darkgl.pl/)",
"contributors": [
"Luca Gesmundo <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DarkGL/slow-json-stringify/issues"
},
"homepage": "https://github.com/DarkGL/slow-json-stringify#readme",
"files": [
"dist"
],
"engines": {
"node": ">=20.11.0"
}
}