-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "md-to-quill-delta",
"version": "1.1.1",
"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/volser/md-to-quill-delta.git"
},
"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": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.2",
"@types/webpack": "^4.32.2",
"coveralls": "^3.0.7",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0",
"quill": "^2.0.0-dev.3",
"ts-jest": "^24.1.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"quill-delta": "^4.2.1",
"remark-parse": "^7.0.2",
"unified": "^8.4.2"
}
}