forked from sliteteam/quill-delta-markdown
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 785 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
{
"name": "quill-delta-markdown",
"version": "0.0.12",
"public": true,
"description": "To and from Markdown and Quill delta",
"main": "index.js",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"test": "jest",
"test:watch": "mocha \"tests/**/*.spec.js\" --reporter progress --watch",
"pretty": "find ./**/*.js | xargs prettier --write --no-semi --print-width 80 --single-quote --trailing-comma es5"
},
"keywords": [
"quill",
"delta",
"markdown"
],
"author": "Slite Team",
"license": "ISC",
"devDependencies": {
"eslint": "3.8.1",
"eslint-plugin-node": "2.1.3",
"jest": "^21.0.1",
"prettier": "^1.5.2"
},
"dependencies": {
"commonmark": "^0.26.0",
"lodash": "^4.16.4",
"quill-delta": "^3.4.0"
}
}