-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 867 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
{
"name": "hextape",
"version": "0.0.1",
"description": "Converts to/from various ASCII hex record formats used in EPROM programming, paper tapes etc",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"jsdoc": "./node_modules/.bin/jsdoc -d ./jsdoc . package.json README.md"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/davidknoll/hextape.git"
},
"keywords": [
"hex",
"binary",
"srecord",
"stream",
"intel",
"motorola",
"signetics"
],
"author": "David Knoll <david@davidknoll.me.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidknoll/hextape/issues"
},
"homepage": "https://github.com/davidknoll/hextape#readme",
"dependencies": {
"printf": "^0.6.0"
},
"devDependencies": {
"jsdoc": "^3.6.6"
}
}