forked from ProseMirror/prosemirror-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 824 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
{
"name": "prosemirror-model",
"version": "1.7.4",
"description": "ProseMirror's document model",
"main": "dist/index.js",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "[email protected]",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror-model.git"
},
"dependencies": {
"orderedmap": "^1.0.0"
},
"devDependencies": {
"mocha": "^3.0.2",
"ist": "^1.0.0",
"jsdom": "^10.1.0",
"prosemirror-test-builder": "^1.0.0",
"rollup": "^0.49.0",
"rollup-plugin-buble": "^0.15.0"
},
"scripts": {
"test": "node etc/link-self.js && mocha test/test-*.js",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepare": "npm run build"
}
}