forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.53 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
{
"name": "@ochtec/quill",
"version": "2.0.0-dev.2",
"description": "Your powerful, rich text editor",
"author": "Jason Chen <[email protected]>",
"homepage": "http://quilljs.com",
"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.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-webpack": "~0.11.1",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"highlight.js": "^9.15.6",
"html-loader": "~0.5.5",
"http-proxy": "^1.17.0",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"karma": "^4.0.1",
"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.6.0",
"prettier": "^1.17.0",
"puppeteer": "^1.14.0",
"style-loader": "~0.23.1",
"stylus": "~0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^5.3.3",
"typescript": "^3.4.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/ochtec/quill"
},
"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"
]
}