-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 846 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 846 Bytes
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
{
"name": "freezedry",
"version": "1.0.0",
"description": "A simple serializer for complex JS object",
"main": "freezedry.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node tests/index.js",
"start": "node server.js",
"prepack": "sh build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shortercode/JSOF.git"
},
"keywords": [
"JavaScript",
"JS",
"JSON",
"BSON",
"serialise",
"structuredclone",
"deserialize",
"serialize",
"deserialize"
],
"author": "Iain Shorter <iainshorter@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shortercode/JSOF/issues"
},
"homepage": "https://github.com/shortercode/JSOF#readme",
"devDependencies": {
"bson": "^2.0.4",
"msgpack-lite": "^0.1.26"
}
}