-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
78 lines (78 loc) · 2.46 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
75
76
77
78
{
"name": "humhub-prosemirror-richtext",
"version": "2.1.5",
"description": "Prosemirror based richtext implementation for the humhub social network",
"license": "Apache-2.0",
"main": "dist/humhub-editor.js",
"style": "css/style.css",
"maintainers": [
{
"name": "Julian Harrer",
"email": "julian.harrer@humhub.com"
}
],
"repository": {
"type": "git",
"url": "git@github.com:humhub/humhub-prosemirror.git"
},
"devDependencies": {
"@codemirror/commands": "^6.2.4",
"@codemirror/lang-javascript": "^6.1.9",
"@codemirror/language": "^6.8.0",
"@codemirror/view": "^6.14.1",
"@rollup/plugin-buble": "^1.0.2",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-eslint": "^9.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"babel-polyfill": "^6.26.0",
"chai": "^4.3.7",
"emoji-name-map": "^1.2.9",
"emoji-unicode-map": "^1.1.11",
"emojilib": "3.0.11",
"eslint": "^8.40.0",
"eslint-plugin-mocha": "^10.1.0",
"grunt": "^1.6.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"ist": "^1.1.7",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-emoji": "2.0.2",
"markdown-it-imsize": "^2.0.1",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"moduleserve": "^0.9.1",
"nyc": "^15.1.0",
"prosemirror-commands": "^1.5.2",
"prosemirror-dropcursor": "^1.8.1",
"prosemirror-example-setup": "^1.2.2",
"prosemirror-gapcursor": "^1.3.2",
"prosemirror-history": "^1.3.2",
"prosemirror-inputrules": "^1.2.1",
"prosemirror-keymap": "^1.2.2",
"prosemirror-markdown": "^1.11.1",
"prosemirror-menu": "^1.2.2",
"prosemirror-model": "^1.19.2",
"prosemirror-schema-basic": "^1.2.2",
"prosemirror-schema-list": "^1.3.0",
"prosemirror-state": "^1.4.3",
"prosemirror-tables": "^1.3.4",
"prosemirror-test-builder": "^1.1.1",
"prosemirror-transform": "^1.7.3",
"prosemirror-view": "^1.31.5",
"rollup": "^3.26.2",
"twemoji": "^14.0.2",
"unicode-emoji-json": "^0.4.0"
},
"scripts": {
"build": "grunt rollup",
"lint": "eslint . --ext .js --ignore-path .gitignore",
"test": "mocha-headless-chrome -f http://localhost:8090",
"test-server": "moduleserve test --port 8090"
},
"type": "commonjs"
}