forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.45 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": "@teleporthq/quill",
"version": "1.0.0",
"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.ts",
"quill.ts"
],
"config": {
"ports": {
"proxy": "9000",
"jekyll": "4000",
"karma": "9876",
"webpack": "9080"
}
},
"dependencies": {
"eventemitter3": "^4.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.5.0",
"parchment": "^2.0.0",
"quill-delta": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@types/eventemitter3": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"css-loader": "^3.5.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-webpack": "~0.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"highlight.js": "^9.18.1",
"html-loader": "~1.1.0",
"http-proxy": "^1.18.0",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"karma": "^5.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^3.1.1",
"karma-sauce-launcher": "^4.1.2",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "~0.9.0",
"prettier": "^1.17.0",
"puppeteer": "^2.1.1",
"style-loader": "~1.1.3",
"stylus": "~0.54.7",
"stylus-loader": "^3.0.2",
"ts-loader": "^6.2.2",
"ts-node": "^10.8.1",
"typescript": "^4.6.4",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/quill"
},
"bugs": {
"url": "https://github.com/quilljs/quill/issues"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"build": "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",
"develop": "npm run start",
"lint": "eslint .",
"start": "npm run build:webpack; bundle exec foreman start -f _develop/procfile",
"test": "npm run test:unit; npm run test:random",
"test:all": "npm run test:unit; npm run test:functional; npm run test:random",
"test:functional": "./_develop/scripts/puppeteer.sh",
"test:unit": "npm run build; karma start _develop/karma.config.js",
"test:random": "ts-node -O '{\"module\":\"commonjs\"}' ./node_modules/.bin/jasmine test/random.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"
]
}