-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
33 lines (33 loc) · 952 Bytes
/
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
{
"name": "multihack-web",
"version": "4.2.3",
"description": "A web-based editor with realtime collaboration and voice calls.",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "standard --fix src/** && standard --fix test/** && tape test/*.js",
"build": "browserify src/index.js -i wrtc -s Multihack -o static/js/multihack.js",
"watch": "watchify src/index.js -i wrtc -s Multihack -o static/js/multihack.js"
},
"author": "Thomas Mullen",
"license": "MIT",
"devDependencies": {
"browserify": "^14.4.0",
"standard": "^8.6.0",
"tape": "^4.6.3",
"watchify": "^3.9.0"
},
"dependencies": {
"clipboard": "^1.7.1",
"cuid": "^1.3.8",
"events": "^1.1.1",
"file-icons-js": "github:websemantics/file-icons-js",
"getusermedia": "^2.0.1",
"inherits": "^2.0.3",
"multihack-core": "^2.2.0",
"mustache": "^2.3.0",
"p2p-graph": "^1.1.1"
}
}