This repository was archived by the owner on Mar 8, 2022. It is now read-only.
forked from mafintosh/hyperirc-www
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 KB
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
{
"name": "hyperirc-www",
"version": "0.0.0",
"description": "Read IRC in the browser by joining the hyperirc network over webrtc",
"main": "index.js",
"dependencies": {
"bel": "^5.1.5",
"date-time": "^2.1.0",
"hypercore": "^6.10.1",
"level-browserify": "^1.1.0",
"linkify-urls": "^1.4.0",
"pump": "^1.0.1",
"random-access-idb": "^1.0.4",
"random-access-memory": "^2.4.0",
"signalhub": "^4.5.1",
"webrtc-swarm": "^2.4.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"budo": "^10.0.4",
"cpr": "^2.2.0",
"exorcist": "^1.0.0",
"http-server": "^0.10.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"standard": "^10.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/hyperirc-www.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/hyperirc-www/issues"
},
"scripts": {
"start": "budo index.js:bundle.js --dir static --live --open",
"test": "standard",
"clean": "rimraf dist && mkdirp dist",
"build": "npm run clean && run-p build:*",
"build:js": "browserify index.js --debug | exorcist dist/bundle.js.map > dist/bundle.js",
"build:static": "cpr static dist/",
"test-build": "npm run build && http-server dist"
},
"homepage": "https://github.com/mafintosh/hyperirc-www"
}