forked from dcodeIO/PSON
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.03 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
{
"name": "@as-com/pson",
"description": "A super efficient binary serialization format for JSON.",
"version": "3.0.0",
"author": "Andrew Sun",
"main": "dist/PSON.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/as-com/PSON.git"
},
"bugs": {
"url": "https://github.com/as-com/PSON/issues"
},
"keywords": [
"net",
"buffer",
"serialization",
"bytebuffer",
"websocket",
"webrtc",
"json",
"protobuf",
"thrift"
],
"files": [
"dist",
"README.md"
],
"license": "Apache-2.0",
"engines": {
"node": ">=6"
},
"dependencies": {
"bytebuffer": "^5.0.1",
"long": "^3.2.0"
},
"devDependencies": {
"@types/bytebuffer": "^5.0.34",
"@types/lodash": "^4.14.91",
"@types/node": "^8.5.2",
"lodash": "^4.17.4",
"pson": "^2.0.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"scripts": {
"build": "tsc"
},
"testObj": {
"A": 1,
"B": 3444,
"C": [
7654,
23,
3,
1099511627746
],
"Ddccdscds": "laskdjncldkjc[]-ok,..",
"bigint": 1099511627776
}
}