-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "co-editor",
"version": "1.0.0-alpha4",
"description": "A web component for real-time collaborative text editing",
"main": "dist/co-editor.min.js",
"scripts": {
"test": "karma start",
"start": "owc-dev-server",
"build": "webpack",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:es5": "karma start karma.es5.config.js",
"test:es5:watch": "karma start karma.es5.config.js --auto-watch=true --single-run=false",
"test:es5:bs": "karma start karma.es5.bs.config.js"
},
"files": [
"dist/",
"demo.gif",
"index.html"
],
"repository": {
"type": "git",
"url": "https://github.com/pekam/co-editor.git"
},
"author": "Pekka Maanpää",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/pekam/co-editor/issues"
},
"homepage": "https://github.com/pekam/co-editor",
"dependencies": {
"quill-cursors": "^1.0.3"
},
"devDependencies": {
"@open-wc/testing": "^0.9.0",
"@open-wc/testing-karma": "^0.4.0",
"@open-wc/testing-karma-bs": "^0.2.0",
"expose-loader": "^0.7.5",
"karma": "^4.0.0",
"lit-html": "^1.0.0-rc.2",
"owc-dev-server": "^0.1.2",
"webpack-cli": "^3.2.3",
"webpack-merge": "^4.1.5"
}
}