-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "mbr",
"version": "1.1.3",
"description": "Master Boot Record (MBR)",
"author": "Jonas Hermsmeier <jhermsmeier@gmail.com> (https://jhermsmeier.de)",
"license": "MIT",
"keywords": [
"mbr",
"master",
"boot",
"record",
"disk",
"structure",
"parser",
"hdd",
"gpt",
"chs",
"lba"
],
"main": "lib/mbr.js",
"dependencies": {
"bloodline": "^1.0.1",
"chs": "^1.1.0"
},
"devDependencies": {
"@jhermsmeier/control": "2.0.0",
"nanobench": "2.1.1"
},
"homepage": "https://github.com/jhermsmeier/node-mbr",
"repository": {
"type": "git",
"url": "git+https://github.com/jhermsmeier/node-mbr.git"
},
"bugs": {
"url": "https://github.com/jhermsmeier/node-mbr/issues"
},
"scripts": {
"test": "control test",
"benchmark": "node benchmark",
"docs": "echo '# API Reference' > doc/README.md; jsdoc2md 'lib/**/*.js' --separators --global-index-format grouped --property-list-format list --param-list-format list >> doc/README.md"
}
}