-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
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
{
"name": "py-marshal",
"description": "python object serialize/deserialize for node",
"author": "Burl Nyswonger <burl.bn@gmail.com> (https://github.com/burl)",
"contributors": [],
"license": "MIT",
"homepage": "https://github.com/burl/node-py-marshal",
"repository": {
"url": "https://github.com/burl/node-py-marshal",
"type": "git"
},
"bugs": "https://github.com/burl/node-py-marshal/issues",
"version": "1.0.5",
"main": "lib/py-marshal",
"files": [
"lib/py-marshal.js"
],
"scripts": {
"test": "ava --verbose test",
"cover": "nyc ava --verbose test",
"report": "nyc report -r lcov",
"sortpkg": "prettier-package-json",
"update-test-data": "python test/bin/gen-test-data.py test/data"
},
"dependencies": {
"ieee754": "^1.1.8"
},
"devDependencies": {
"ava": "^0.23.0",
"coveralls": "^3.0.0",
"nyc": "^11.3.0"
},
"keywords": [
"deserialize",
"marshal",
"pickle",
"python",
"serialize",
"shelve"
],
"engines": {
"node": ">=6.11.5"
}
}