-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 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
62
63
64
65
66
67
68
69
70
71
{
"name": "easy-ssb-pub",
"version": "4.0.0",
"private": true,
"description": "Deploy a Secure Scuttlebutt Pub easily",
"author": "Andre Staltz",
"license": "AGPL-3.0",
"main": "dist/index.js",
"dependencies": {
"@types/debug": "0.0.29",
"@types/express": "^4.0.35",
"@types/minimist": "^1.2.0",
"@types/superagent": "^2.0.36",
"asyncmemo": "^1.0.0",
"body-parser": "^1.16.0",
"debug": "^2.6.1",
"ejs": "^2.5.5",
"emoji-named-characters": "^1.0.2",
"emoji-server": "^1.0.0",
"express": "^4.14.0",
"human-time": "^0.0.1",
"lrucache": "^1.0.2",
"minimist": "^1.2.0",
"path": "^0.12.7",
"pull-cat": "^1.1.11",
"pull-paramap": "^1.2.2",
"pull-stream": "^3.5.1",
"qr-image": "^3.2.0",
"rxjs": "^5.2.0",
"scuttlebot": "11.1.x",
"ssb-autoname": "1.0.0",
"ssb-blobs": "1.1.0",
"ssb-client": "^4.4.1",
"ssb-config": "2.2.0",
"ssb-discovery-swarm": "1.0.0",
"ssb-ebt": "5.1.4",
"ssb-friends": "2.4.0",
"ssb-keys": "7.0.14",
"ssb-links": "3.0.3",
"ssb-marked": "^0.7.4",
"ssb-msgs": "~5.2.0",
"ssb-query": "^2.0.1",
"ssb-ref": "^2.9.1",
"ssb-sort": "^1.1.0",
"ssb-ws": "2.1.0",
"stream-to-pull-stream": "^1.7.2",
"streamview-links": "^2.1.1",
"ts-multipick": "1.0.0",
"typescript": "2.3.2"
},
"devDependencies": {
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.18",
"@types/supertest": "^2.0.0",
"html-looks-like": "^1.0.1",
"mocha": "^3.2.0",
"supertest": "^3.0.0",
"ts-node": "^3.0.4",
"tslint": "^5.2.0"
},
"scripts": {
"compile": "tsc",
"start": "tsc && node dist/index --host $HOST",
"lint": "tslint -c tslint.json src/**/*.ts src/*.ts",
"mocha": "mocha src/**/*.test.ts --require ts-node/register",
"test": "npm run lint && npm run mocha"
},
"engines": {
"node": "8.10.0"
}
}