-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 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
{
"name": "safe-stable-stringify",
"version": "2.5.0",
"description": "Deterministic and safely JSON.stringify to quickly serialize JavaScript objects",
"exports": {
"require": "./index.js",
"import": "./esm/wrapper.js"
},
"keywords": [
"stable",
"stringify",
"JSON",
"JSON.stringify",
"safe",
"serialize",
"deterministic",
"circular",
"object",
"predicable",
"repeatable",
"fast",
"bigint"
],
"main": "index.js",
"scripts": {
"test": "standard && tap test.js",
"tap": "tap test.js",
"tap:only": "tap test.js --watch --only",
"benchmark": "node --allow-natives-syntax benchmark.js",
"compare": "node --allow-natives-syntax compare.js",
"lint": "standard --fix",
"tsc": "tsc --project tsconfig.json"
},
"engines": {
"node": ">=10"
},
"author": "Ruben Bridgewater",
"license": "MIT",
"typings": "index.d.ts",
"devDependencies": {
"@types/json-stable-stringify": "^1.2.0",
"@types/node": "^18.19.130",
"clone": "^2.1.2",
"fast-json-stable-stringify": "^2.1.0",
"fast-safe-stringify": "^2.1.1",
"fast-stable-stringify": "^1.0.0",
"faster-stable-stringify": "^1.0.0",
"fastest-stable-stringify": "^2.0.2",
"json-stable-stringify": "^1.3.0",
"json-stringify-deterministic": "^1.0.12",
"json-stringify-safe": "^5.0.1",
"bench-node": "^0.14.0",
"standard": "^17.1.2",
"tap": "^16.3.10",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BridgeAR/safe-stable-stringify.git"
},
"bugs": {
"url": "https://github.com/BridgeAR/safe-stable-stringify/issues"
},
"homepage": "https://github.com/BridgeAR/safe-stable-stringify#readme"
}