-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 2.33 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
{
"name": "quill-smart-break",
"version": "0.2.0",
"description": "Support shift + enter in Quill WYSIWYG editor",
"main": "dist/smart-breaker.js",
"repository": {
"url": "https://github.com/simialbi/yii2-quill"
},
"files": [
"src/blots",
"src/smart-breaker.js",
"dist/smart-breaker.js",
"dist/smart-breaker.min.js",
"dist/smart-breaker.min.js.map"
],
"scripts": {
"build": "npm run lint && npm run build:webpack",
"build:webpack": "webpack --config webpack.config.js",
"build:release": "webpack --config webpack.config.js --env.minimize",
"lint": "eslint --parser-options=sourceType:module src/blots src/smart-breaker.js",
"test": "echo \"Warning: no test specified\""
},
"dependencies": {},
"peerDependencies": {
"quill": "^1.3.7"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-webpack": "~0.12.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"quill": "^1.3.7",
"quill-delta": "4.2.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"keywords": [
"br",
"smart br",
"quill",
"quilljs",
"linebreak"
],
"author": "Simon Karlen <[email protected]>",
"license": "MIT",
"config": {
"ports": {
"proxy": "9000",
"webpack": "9080"
}
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
}
},
"rules": {
"arrow-body-style": [
"off"
],
"class-methods-use-this": [
"off"
],
"no-param-reassign": [
"off"
],
"no-use-before-define": [
"error",
{
"functions": false
}
],
"max-classes-per-file": [
"off"
]
}
},
"eslintIgnore": [
".github/",
"dist/",
"docs/",
"node_modules/"
]
}