forked from volser/md-to-quill-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@time-loop/md-to-quill-delta",
"version": "1.2.16",
"description": "Markdown to Quill Delta",
"main": "dist/umd/index.js",
"module": "dist/mdToDelta.js",
"types": "dist/mdToDelta.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build:umd": "webpack --config webpack.config.ts --mode=production",
"build:esm": "tsc --module es2015",
"build:dist": "npm run build:esm && npm run build:umd",
"build:clean": "rm -rf dist",
"postversion": "npm run build:dist && git push && npm publish && npm run build:clean",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/time-loop/md-to-quill-delta.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"quill",
"delta",
"markdown"
],
"author": "Sergiy VOloshyn <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/volser/md-to-quill-delta/issues"
},
"homepage": "https://github.com/volser/md-to-quill-delta#readme",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/unist": "^3.0.2",
"@types/webpack": "^5.28.5",
"babel-jest": "^29.7.0",
"coveralls": "^3.0.7",
"husky": "^3.0.9",
"jest": "^29.7.0",
"jest-jasmine2": "^29.7.0",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0",
"quill": "^2.0.0-dev.3",
"ts-loader": "^9.5.1",
"tslint": "^5.18.0",
"tslint-loader": "^3.5.4",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-gfm-strikethrough": "^2.0.0",
"mdast-util-gfm-table": "^2.0.0",
"mdast-util-gfm-task-list-item": "^2.0.0",
"micromark-extension-gfm-strikethrough": "^2.0.0",
"micromark-extension-gfm-table": "^2.0.0",
"micromark-extension-gfm-task-list-item": "^2.0.1",
"quill-delta": "^4.2.1"
}
}