-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
{
"name": "quill-blot-formatter",
"version": "1.0.4",
"description": "a module for the Quill text editor to allow blots to be reformatted. Built in formatters: resize and realign. Built in blot support: images and iframe videos.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "/~https://github.com/Fandom-OSS/quill-blot-formatter",
"bugs": {
"url": "/~https://github.com/Fandom-OSS/quill-blot-formatter/issues"
},
"contributors": [
{
"name": "Nelson Monterroso",
"email": "nmonterroso@users.noreply.github.com",
"url": "/~https://github.com/nmonterroso"
}
],
"repository": {
"type": "git",
"url": "/~https://github.com/Fandom-OSS/quill-blot-formatter"
},
"files": [
"dist"
],
"keywords": [
"quill",
"blot",
"image",
"resize"
],
"license": "Apache-2.0",
"dependencies": {
"deepmerge": "^2.0.0"
},
"peerDependencies": {
"quill": "^1.3.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"copyfiles": "^1.2.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.57.3",
"flow-copy-source": "^1.2.1",
"npm-run-all": "^4.1.2",
"quill": "^1.3.4",
"rimraf": "^2.6.2",
"webpack": "^3.8.1"
},
"scripts": {
"build": "yarn clean && yarn build:babel && yarn build:webpack && yarn build:copy-flow-source && yarn build:copy-ts-defs",
"build:babel": "babel src/ --out-dir dist",
"build:copy-flow-source": "flow-copy-source --verbose src dist",
"build:copy-ts-defs": "copyfiles index.d.ts dist",
"build:webpack": "webpack -p --progress --colors",
"clean": "rimraf dist",
"dev:babel": "babel --watch src/ --out-dir dist",
"dev:webpack": "yarn dev:delay && webpack --progress --colors --watch",
"dev:delay": "node -e \"setTimeout(() => {}, 3000)\"",
"prepublishOnly": "yarn build",
"start": "yarn clean && yarn npm-run-all --race --parallel dev:babel dev:webpack"
}
}