forked from ProseMirror/prosemirror-schema-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 736 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 736 Bytes
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
{
"name": "prosemirror-schema-basic",
"version": "1.1.2",
"description": "Basic schema elements for ProseMirror",
"main": "dist/index.js",
"module": "dist/index.es.js",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "marijnh@gmail.com",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror-schema-basic.git"
},
"dependencies": {
"prosemirror-model": "^1.2.0"
},
"devDependencies": {
"rollup": "^1.26.3",
"@rollup/plugin-buble": "^0.20.0"
},
"scripts": {
"test": "true",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepare": "npm run build"
}
}