forked from convergencelabs/monaco-collab-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.78 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
{
"name": "@convergencelabs/monaco-collab-ext",
"version": "0.3.2",
"title": "Monaco Editor Collaborative Extensions",
"description": "Collaborative Extensions for the Monaco Editor",
"keywords": [
"collaboration",
"monaco",
"editor"
],
"homepage": "http://convergencelabs.com",
"author": {
"name": "Convergence Labs",
"email": "[email protected]",
"url": "http://convergencelabs.com"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/convergencelabs/monaco-collab-ext.git"
},
"bugs": {
"url": "https://github.com/convergencelabs/monaco-collab-ext/issues"
},
"license": "MIT",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"monaco-editor": ">=0.15.6"
},
"devDependencies": {
"@babel/cli": "7.13.14",
"@babel/core": "7.13.15",
"@babel/node": "7.13.13",
"@babel/preset-env": "7.13.15",
"@babel/preset-stage-3": "7.8.3",
"@babel/preset-typescript": "7.13.0",
"@babel/register": "7.13.14",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-transform-class-properties": "6.24.1",
"del": "6.0.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-bump": "3.2.0",
"gulp-clean-css": "4.3.0",
"gulp-filter-each": "1.0.1",
"gulp-header": "2.0.7",
"gulp-insert": "0.5.0",
"gulp-rename": "1.4.0",
"gulp-sourcemaps": "2.6.4",
"gulp-typescript": "5.0.0",
"gulp-uglify": "3.0.1",
"trim": "0.0.1",
"ts-loader": "5.3.3",
"tslint": "5.12.0",
"typescript": "3.7.4",
"webpack": "4.28.1",
"webpack-stream": "5.2.1"
},
"scripts": {
"dist": "gulp dist",
"clean": "gulp clean"
}
}