-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "quilljs-markdown",
"version": "1.2.0",
"description": "Markdown for Quill Editor",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "node_modules/.bin/rimraf ./dist",
"watch": "parcel serve ./docs/index.html",
"build": "npm-run-all clean fix:checkstyle build:* docs-build:*",
"build:module": "webpack --config webpack.config.cjs",
"build:css": "parcel build ./quilljs-markdown-common-style.scss --no-minify",
"docs-build": "npm-run-all clean docs-build:*",
"docs-build:module": "webpack --config webpack.config.docs.cjs",
"fix:checkstyle": "standard --fix",
"test": "npm-run-all test:*",
"test:unit-test": "jest --config jest.config.js",
"test:checkstyle": "standard --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloverhearts/quilljs-markdown.git"
},
"keywords": [
"quill",
"quilljs",
"markdown",
"editor"
],
"author": "cloverhearts",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloverhearts/quilljs-markdown/issues"
},
"homepage": "https://cloverhearts.github.io/quilljs-markdown",
"standard": {
"ignore": [
"tests/**",
"package.json",
"jest.config.js",
"docs/**",
"dist/**"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"quill": "^1.3.7",
"rimraf": "^2.7.1",
"sass": "^1.32.8",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"core-js": "^3.23.5",
"regenerator-runtime": "^0.13.9"
}
}