forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
115 lines (115 loc) · 3.82 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "devextreme-quill",
"version": "1.7.2",
"description": "Core of the DevExtreme HtmlEditor",
"author": "Developer Express Inc.",
"main": "dist/dx-quill.js",
"homepage": "https://js.devexpress.com/",
"files": [
"attributors",
"blots",
"core",
"formats",
"modules",
"utils",
"dist/dx-quill.js",
"dist/dx-quill.core.js",
"dist/dx-quill.min.js.map",
"dist/dx-quill.min.js",
"dist/dx-quill.core.css",
"core.js",
"polyfills.js",
"quill.js",
"index.d.ts"
],
"config": {
"ports": {
"karma": "9876"
}
},
"dependencies": {
"core-js": "^3.34.0",
"eventemitter3": "^4.0.7",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"parchment": "^2.0.1",
"quill-delta": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-plugin": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"babel-plugin-istanbul": "^6.1.1",
"concurrently": "^7.5.0",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-devextreme": "^0.2.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"highlight.js": "^11.6.0",
"html-loader": "^4.2.0",
"http-proxy": "^1.18.1",
"http-server": "^14.1.1",
"jasmine": "^4.5.0",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-sauce-launcher": "^4.1.4",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"minimist": "^1.2.8",
"nconf": "^0.12.1",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"terser-webpack-plugin": "^5.3.6",
"testcafe": "^3.4.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"wait-on": "^7.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/DevExpress/devextreme-quill.git"
},
"bugs": {
"url": "https://www.devexpress.com/support/"
},
"scripts": {
"dev": "node ./_develop/prepare_playground.mjs && webpack-dev-server --config _develop/webpack.config.js",
"puppeteer:init": "npm install --prefix ./node-modules/puppeteer",
"clean": "rimraf dist/* && rimraf test/functional/example/src",
"copy-dist": "ncp dist test/functional/example/src",
"build": "npm run clean && npm run build:webpack",
"build:prod": "npm run clean && npm run build:webpack-prod",
"build:webpack": "webpack --config _develop/webpack.config.js && rimraf dist/dx-quill.core dist/dx-quill.bubble dist/dx-quill.snow",
"build:webpack-prod": "webpack --config _develop/webpack.config.js --env production && rimraf dist/dx-quill.core dist/dx-quill.bubble dist/dx-quill.snow",
"lint": "eslint blots core formats modules test utils",
"start:dev": "npm run build && npm run copy-dist && http-server ./test/functional/example",
"start:prod": "npm run build:prod && npm run copy-dist && http-server ./test/functional/example",
"dev:test:unit": "npm run build && npm run test:unit",
"dev:test:functional": "concurrently -k npm:start:dev npm:test:functional",
"preci:test:functional": "npm run copy-dist",
"test:functional": "node ./test/functional/runner",
"test:unit": "karma start _develop/karma.config.js",
"test:coverage": "webpack --env coverage --config _develop/webpack.config.js && karma start _develop/karma.config.js --reporters coverage",
"version": "npm version --no-git-tag-version"
},
"keywords": [
"editor",
"rich text",
"wysiwyg"
]
}