forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
91 lines (91 loc) · 2.64 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
{
"name": "quill",
"version": "1.3.6",
"description": "Your powerful, rich text editor",
"author": "Jason Chen <jhchen7@gmail.com>",
"homepage": "http://quilljs.com",
"main": "dist/quill.js",
"files": [
"assets",
"blots",
"core",
"formats",
"modules",
"themes",
"ui",
"dist/quill.bubble.css",
"dist/quill.snow.css",
"dist/quill.core.css",
"dist/quill.js",
"dist/quill.core.js",
"dist/quill.min.js.map",
"dist/quill.min.js",
"core.js",
"quill.js"
],
"config": {
"ports": {
"proxy": "9000",
"jekyll": "4000",
"karma": "9876",
"webpack": "9080"
}
},
"dependencies": {
"eventemitter3": "^2.0.3",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.5.0",
"parchment": "^1.1.4",
"quill-delta": "^4.2.2"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.0",
"babel-loader": "^9.1.3",
"babel-plugin-transform-define": "^2.1.4",
"core-js": "^3.8.0",
"css-loader": "^6.10.0",
"html-loader": "^4.2.0",
"http-proxy": "^1.16.2",
"lodash": "^4.17.4",
"mini-css-extract-plugin": "^2.7.6",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.3",
"stylus": "^0.62.0",
"stylus-loader": "^7.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/quill"
},
"bugs": {
"url": "https://github.com/quilljs/quill/issues"
},
"scripts": {
"build": "webpack --config _develop/webpack.config.js",
"build:modern": "webpack --config _develop/webpack.config.js --env minimize",
"build:legacy": "BUILD_ENV=legacy webpack --config _develop/webpack.config.js --env minimize",
"build:release": "./_develop/scripts/release.sh",
"start": "npm run build; bundle exec foreman start -f _develop/procfile",
"test": "npm run test:unit",
"test:all": "npm run test:unit; npm run test:functional",
"test:functional": "./_develop/scripts/webdriver.sh",
"test:unit": "npm run build; karma start _develop/karma.config.js",
"test:coverage": "webpack --env.coverage --config _develop/webpack.config.js; karma start _develop/karma.config.js --reporters coverage",
"travis": "karma start _develop/karma.config.js --reporters dots,saucelabs",
"webdriver:start": "webdriver-manager start",
"webdriver:update": "webdriver-manager update"
},
"keywords": [
"editor",
"rich text",
"wysiwyg"
]
}