forked from fastify/fast-json-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "fast-json-stringify-telejson",
"version": "0.0.1",
"description": "fast-json-stringify + telejson (only dates currently)",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"benchmark": "node bench.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/larskendall/fast-json-stringify-telejson.git"
},
"keywords": [
"json",
"stringify",
"schema",
"fast",
"telejson"
],
"license": "MIT",
"devDependencies": {
"@sinclair/typebox": "^0.23.3",
"benchmark": "^2.1.4",
"compile-json-stringify": "^0.1.2",
"is-my-json-valid": "^2.20.0",
"moment": "^2.24.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"semver": "^7.1.0",
"standard": "^16.0.1",
"tap": "^16.0.1",
"typescript": "^4.0.2",
"webpack": "^5.40.0"
},
"dependencies": {
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
"deepmerge": "^4.2.2",
"fast-uri": "^1.0.1",
"rfdc": "^1.2.0",
"string-similarity": "^4.0.1"
},
"engines": {
"node": ">= 10.0.0"
},
"standard": {
"ignore": [
"schema-validator.js"
]
},
"runkitExampleFilename": "example.js"
}