forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
165 lines (165 loc) · 4.09 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "quill",
"version": "2.0.0-dev.3",
"description": "Your powerful, rich text editor",
"author": "Jason Chen <[email protected]>",
"homepage": "https://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": {
"clone": "^2.1.2",
"deep-equal": "^1.0.1",
"eventemitter3": "^3.1.0",
"extend": "^3.0.2",
"parchment": "2.0.0-dev.0",
"quill-delta": "4.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.0",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-webpack": "~0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"highlight.js": "^9.14.2",
"html-loader": "~0.5.5",
"http-proxy": "^1.17.0",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-sauce-launcher": "^2.0.2",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "~0.5.0",
"prettier": "^1.16.4",
"puppeteer": "^1.12.2",
"style-loader": "~0.23.1",
"stylus": "~0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.10"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/quill"
},
"bugs": {
"url": "https://github.com/quilljs/quill/issues"
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier"
],
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"plugins": [
"prettier"
],
"settings": {
"import/resolver": {
"webpack": {
"config": "_develop/webpack.config.js"
}
}
},
"rules": {
"arrow-body-style": [
"off"
],
"class-methods-use-this": [
"off"
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"_develop/*.js",
"test/**/*.js"
]
}
],
"no-param-reassign": [
"off"
],
"no-use-before-define": [
"error",
{
"functions": false
}
],
"import/named": [
"error"
],
"prettier/prettier": "error"
}
},
"eslintIgnore": [
"dist/",
"docs/",
"node_modules/"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"build": "npm run lint && npm run build:webpack",
"build:webpack": "webpack --config _develop/webpack.config.js; rm dist/quill.core dist/quill.bubble dist/quill.snow",
"build:release": "./_develop/scripts/release.sh",
"lint": "eslint blots core formats modules themes ui test",
"start": "npm run build:webpack; 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/puppeteer.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": "npm run lint && karma start _develop/karma.config.js --reporters dots,saucelabs"
},
"keywords": [
"editor",
"rich text",
"wysiwyg"
]
}