forked from FirebaseExtended/firepad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.59 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": "firepad",
"description": "Collaborative text editing powered by Firebase",
"version": "1.5.0",
"author": "Firebase (https://firebase.google.com/)",
"contributors": [
"Michael Lehenbauer <[email protected]>"
],
"homepage": "http://www.firepad.io/",
"repository": {
"type": "git",
"url": "https://github.com/firebase/firepad.git"
},
"browser": {
"jsdom": false
},
"bugs": {
"url": "https://github.com/firebase/firepad/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://firebase.mit-license.org/"
}
],
"keywords": [
"text",
"word",
"editor",
"firebase",
"realtime",
"collaborative"
],
"main": "dist/firepad.min.js",
"files": [
"dist/**",
"LICENSE",
"README.md",
"package.json"
],
"dependencies": {
"firebase": "^7.14.3",
"jsdom": ">3"
},
"devDependencies": {
"coveralls": "^2.11.2",
"grunt": "~0.4.5",
"grunt-cli": "0.1.13",
"grunt-coffeelint": "0.0.7",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-karma": "^2.0.0",
"jasmine-core": "^2.3.4",
"karma": "^2.0.2",
"karma-coverage": "^0.2.6",
"karma-failed-reporter": "0.0.2",
"karma-jasmine": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.13",
"monaco-editor": "^0.14.3"
},
"scripts": {
"test": "grunt test",
"travis": "grunt",
"dev": "grunt watch",
"build": "grunt build"
}
}