-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
61 lines (61 loc) · 1.87 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "chattervox",
"version": "0.7.0",
"description": "An AX.25 packet radio chat protocol with support for digital signatures and binary compression. Like IRC over radio waves 📡〰.",
"main": "build/main.js",
"bin": {
"chattervox": "build/main.js"
},
"keywords": [
"ax25",
"packet radio",
"ham radio",
"amateur radio",
"ecdsa",
"digital signatures"
],
"preferGlobal": true,
"scripts": {
"build": "tsc",
"pkg": "bash ./pkg.sh",
"watch": "tsc --watch",
"test": "mocha test",
"coverage": "nyc --reporter=html --reporter=text mocha test && rm -rf .nyc_output/",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brannondorsey/chattervox.git"
},
"author": "Brannon Dorsey <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/brannondorsey/chattervox/issues"
},
"homepage": "https://github.com/brannondorsey/chattervox#readme",
"dependencies": {
"argparse": "^1.0.10",
"ax25": "git+https://github.com/echicken/node-ax25.git#124b496631fa448d95ac97553cdd1c8120d4f9cb",
"command-exists": "^1.2.7",
"elliptic": "^6.4.1",
"kiss-tnc": "git+https://github.com/brannondorsey/kiss-tnc.git#3320a26e7d5abd586ca558dccfb4cbfcd291768b",
"terminal-kit": "^1.26.2"
},
"devDependencies": {
"@types/argparse": "^1.0.34",
"@types/node": "^10.9.4",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"pkg": "^4.3.4",
"typescript": "^3.0.3"
},
"pkg": {
"scripts": [
"build/**/*.js",
"node_modules/ax25/**/*.js",
"node_modules/terminal-kit/**/*.js"
]
}
}