-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "opentok-editor",
"version": "0.3.3",
"description": "A real time collaborative editor for OpenTok using CodeMirror and ot.js",
"main": "src/opentok-editor.js",
"scripts": {
"test": "node node_modules/karma/bin/karma start karma.conf.js --single-run --browsers Firefox",
"start": "http-server"
},
"repository": {
"type": "git",
"url": "https://github.com/aullman/opentok-editor"
},
"keywords": [
"opentok",
"editor",
"webrtc",
"operational",
"transform"
],
"author": "Adam Ullman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aullman/opentok-editor/issues"
},
"homepage": "https://github.com/aullman/opentok-editor",
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"gulp": "^3.8.7",
"gulp-bower": "0.0.6",
"gulp-concat": "^2.3.4",
"gulp-jshint": "^1.8.4",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^0.3.1",
"http-server": "^0.9.0",
"karma": "^0.12.22",
"karma-chrome-launcher": "^0.1.4",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "~0.2.0"
},
"dependencies": {
"angular": "^1.5.5",
"codemirror": "^5.14.2",
"ot": "git://github.com/aullman/ot.js.git#master"
}
}