This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 883
/
package.json
74 lines (74 loc) · 1.72 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
72
73
74
{
"name": "firepad",
"description": "Collaborative text editing powered by Firebase",
"version": "1.5.11",
"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.13.2",
"jsdom": "^16.2.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"codemirror": "^5.52.2",
"coveralls": "^3.0.11",
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify-es": "github:gruntjs/grunt-contrib-uglify#harmony",
"grunt-contrib-watch": "^1.1.0",
"grunt-karma": "^3.0.2",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-failed-reporter": "0.0.3",
"karma-jasmine": "^3.1.1",
"karma-spec-reporter": "0.0.32",
"monaco-editor": "^0.20.0"
},
"scripts": {
"test": "grunt test",
"travis": "grunt",
"dev": "grunt watch",
"build": "grunt build"
}
}