forked from ProseMirror/prosemirror-history
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 924 Bytes
/
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
{
"name": "prosemirror-history",
"version": "1.1.3",
"description": "Undo history for ProseMirror",
"main": "dist/index.js",
"module": "dist/index.es.js",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "[email protected]",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror-history.git"
},
"dependencies": {
"prosemirror-state": "^1.2.2",
"prosemirror-transform": "^1.0.0",
"rope-sequence": "^1.3.0"
},
"devDependencies": {
"ist": "^1.0.0",
"mocha": "^3.0.2",
"prosemirror-model": "^1.0.0",
"prosemirror-test-builder": "^1.0.0",
"rollup": "^2.26.3",
"@rollup/plugin-buble": "^0.21.3"
},
"scripts": {
"test": "mocha test/test-*.js",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepare": "npm run build"
}
}