-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
145 lines (145 loc) · 3.86 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@jsonjoy.com/json-pack",
"version": "0.0.1",
"description": "High-performance JSON serialization library",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"homepage": "https://github.com/jsonjoy-com/json-pack",
"repository": "jsonjoy-com/json-pack",
"license": "Apache-2.0",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/streamich"
},
"keywords": [
"json",
"cbor",
"dag-json",
"dag-cbor",
"pack",
"msgpack",
"MessagePack",
"json-pack",
"ubjson",
"bencode",
"ion",
"amazon-ion",
"bson",
"resp",
"resp3",
"redis",
"resp-3",
"resp2"
],
"engines": {
"node": ">=10.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"LICENSE",
"lib/"
],
"scripts": {
"prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,tsx,js,jsx}\"",
"prettier:check": "prettier --ignore-path .gitignore --list-different 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "yarn tslint",
"tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose --project .",
"clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
"build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
"jest": "node -r ts-node/register ./node_modules/.bin/jest",
"test": "jest --maxWorkers 7",
"test:ci": "yarn jest --maxWorkers 3 --no-cache",
"coverage": "yarn test --collectCoverage",
"typedoc": "typedoc",
"build:pages": "rimraf gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
"deploy:pages": "gh-pages -d gh-pages",
"publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages"
},
"peerDependencies": {
"tslib": "2"
},
"dependencies": {
"@jsonjoy.com/base64": "^1.1.1",
"@jsonjoy.com/util": "^1.1.2",
"hyperdyperid": "^1.2.0",
"thingies": "^1.20.0"
},
"devDependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@redis/client": "^1.5.12",
"@shelacek/ubjson": "^1.1.1",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.5.12",
"app-root-path": "^3.1.0",
"axios": "^1.3.5",
"base64-js": "^1.5.1",
"benchmark": "^2.1.4",
"bson": "^5.4.0",
"cbor": "^9.0.2",
"cbor-js": "^0.1.0",
"cbor-sync": "^1.0.4",
"cbor-x": "^1.5.9",
"cborg": "^2.0.3",
"fast-safe-stringify": "^2.1.1",
"fast-stable-stringify": "^1.0.0",
"fastest-stable-stringify": "^2.0.2",
"gh-pages": "^5.0.0",
"ion-js": "^4.3.0",
"jest": "^29.7.0",
"js-base64": "^3.7.2",
"jsbi": "^4.3.0",
"json-pack-napi": "^0.0.2",
"messagepack": "^1.1.12",
"msgpack-lite": "^0.1.26",
"msgpack5": "^6.0.2",
"msgpackr": "^1.6.0",
"pako": "^2.0.4",
"prettier": "^3.2.5",
"pretty-quick": "^3.1.3",
"redis-parser": "^3.0.0",
"rimraf": "^5.0.0",
"safe-stable-stringify": "^2.3.1",
"secure-json-parse": "^2.4.0",
"tinybench": "^2.4.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"tslint": "^6.1.3",
"tslint-config-common": "^1.6.2",
"typedoc": "^0.25.12",
"typescript": "^5.3.3"
},
"jest": {
"verbose": true,
"testEnvironmentOptions": {
"url": "http://localhost/"
},
"setupFiles": [
"<rootDir>/src/__tests__/setup.js"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [],
"testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.ts$"
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false
}
}