-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "bitchan-node",
"version": "0.1.0",
"description": "Node bitchan client",
"main": "./lib/index.js",
"scripts": {
"start": "bin/bitchan.js -c etc/bitchan-dev.yaml.example",
"startd": "bin/bitchan.js -c etc/bitchan-dev.yaml.example -g",
"test": "mocha && jshint .",
"j": "jshint ."
},
"bin": {
"bitchan": "./bin/bitchan.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bitchan/bitchan-node.git"
},
"keywords": [
"bitchan",
"bitmessage",
"server",
"application",
"messaging"
],
"author": "Kagami Hiiragi",
"license": "CC0",
"bugs": {
"url": "https://github.com/bitchan/bitchan-node/issues"
},
"homepage": "https://github.com/bitchan/bitchan-node",
"devDependencies": {
"chai": "*",
"jshint": "*",
"mocha": "*"
},
"dependencies": {
"babel": "^4.3.0",
"bitchan-web": "*",
"bitmessage": "bitchan/bitmessage",
"bitmessage-transports": "bitchan/bitmessage-transports",
"convict": "^0.6.1",
"express": "^4.12.2",
"js-yaml": "^3.2.3",
"knex": "tgriesser/knex",
"minimist": "^1.1.0",
"moment": "^2.9.0",
"untildify": "^2.0.0",
"winston": "^0.9.0"
},
"optionalDependencies": {
"pg": "^4.0.0",
"sqlite3": "^3.0.4"
}
}