forked from fastify/fast-json-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "fast-json-stringify",
"version": "4.2.0",
"description": "Stringify your JSON at max speed",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"bench": "node ./benchmark/bench.js",
"bench:cmp": "node ./benchmark/bench-cmp-branch.js",
"bench:cmp:ci": "node ./benchmark/bench-cmp-branch.js --ci",
"benchmark": "node ./benchmark/bench-cmp-lib.js",
"lint:fix": "standard --fix",
"test:lint": "standard",
"test:typescript": "tsc --project ./test/types/tsconfig.json",
"test:unit": "tap -J test/*.test.js test/**/*.test.js",
"test": "npm run test:lint && npm run test:unit && npm run test:typescript"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fast-json-stringify.git"
},
"keywords": [
"json",
"stringify",
"schema",
"fast"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fast-json-stringify/issues"
},
"homepage": "https://github.com/fastify/fast-json-stringify#readme",
"devDependencies": {
"@sinclair/typebox": "^0.34.3",
"benchmark": "^2.1.4",
"chalk": "^4.1.2",
"compile-json-stringify": "^0.1.2",
"inquirer": "^12.0.0",
"is-my-json-valid": "^2.20.0",
"luxon": "^3.0.1",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"semver": "^7.1.0",
"simple-git": "^3.7.1",
"standard": "^17.0.0",
"tap": "^16.0.1",
"typescript": "^5.0.2",
"webpack": "^5.40.0"
},
"dependencies": {
"ajv": "^8.10.0",
"ajv-formats": "^3.0.1",
"deepmerge": "^4.2.2",
"fast-uri": "^3.0.0",
"rfdc": "^1.2.0",
"string-similarity": "^4.0.1"
},
"standard": {
"ignore": [
"schema-validator.js"
]
},
"runkitExampleFilename": "example.js"
}