forked from ProseMirror/prosemirror-view
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "prosemirror-view",
"version": "1.18.7",
"description": "ProseMirror's view component",
"main": "dist/index.js",
"module": "dist/index.es.js",
"style": "style/prosemirror.css",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "marijnh@gmail.com",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror-view.git"
},
"dependencies": {
"prosemirror-model": "^1.1.0",
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.1.0"
},
"devDependencies": {
"ist": "^1.0.0",
"mocha": "^3.0.2",
"moduleserve": "^0.7.0",
"prosemirror-test-builder": "^1.0.0",
"rollup": "^2.26.3",
"@rollup/plugin-buble": "^0.21.3"
},
"scripts": {
"test": "FIXME autorun browser tests",
"test-server": "node test/link-mocha-css.js && moduleserve test --port 8090",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepare": "npm run build"
}
}