forked from joelewis/prosemirror-mentions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.21 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
41
42
43
44
45
46
47
48
{
"name": "prosemirror-mentions",
"version": "1.0.2",
"description": "ProseMirror plugin for enabling @mentions & #hashtags",
"main": "dist/index.js",
"module": "dist/index.es.js",
"peerDependencies": {
"prosemirror-state": "^1.2.2",
"prosemirror-view": "^1.4.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"husky": "^1.3.1",
"prettier": "1.15.3",
"pretty-quick": "^1.10.0",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelewis/prosemirror-mentions.git"
},
"keywords": [
"ProseMirror",
"Plugin",
"Mention",
"Hashtag"
],
"author": "Joe Lewis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joelewis/prosemirror-mentions/issues"
},
"homepage": "https://github.com/joelewis/prosemirror-mentions#readme"
}