forked from clayzermk1/node-marshal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 976 Bytes
/
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
{
"name": "marshal",
"version": "0.4.0",
"description": "Parse Ruby's Marshal strings into JavaScript objects/JSON.",
"main": "index.js",
"scripts": {
"codecov": "codecov -f ./coverage/lcov.info -t 89a2b49e-cb3c-4349-91c0-3403e4a75303 --disable=gcov",
"coverage": "nyc report --reporter=lcov",
"test": "nyc tape test/*.js",
"test-only": "npx cross-env DEBUG=marshal tape test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/clayzermk1/node-marshal.git"
},
"keywords": [
"Ruby",
"Marshal",
"ruby",
"marshal"
],
"author": "Clay Walker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/clayzermk1/node-marshal/issues"
},
"homepage": "https://github.com/clayzermk1/node-marshal",
"engines": {
"node": ">=8"
},
"dependencies": {
"debug": "4.1.1"
},
"devDependencies": {
"codecov": "3.2.0",
"nyc": "13.3.0",
"tape": "4.10.1"
}
}