forked from mattberkowitz/prosemirror-find-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 916 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
{
"name": "prosemirror-find-replace",
"version": "0.9.0",
"description": "Find and Replace plugin for ProseMirror",
"main": "dist/index.js",
"scripts": {
"test": "node test/start.js",
"demo": "moduleserve --transform babel demo",
"dist": "babel -d dist src",
"dist-watch": "babel -w -d dist src",
"prepublish": "rimraf dist/* && babel -d dist src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattberkowitz/prosemirror-find-replace.git"
},
"author": "Matthew Berkowitz",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattberkowitz/prosemirror-find-replace/issues"
},
"homepage": "https://github.com/mattberkowitz/prosemirror-find-replace#readme",
"peerDependencies": {
"prosemirror": ">= 0.7.0"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"moduleserve": "^0.6.1"
}
}