-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.3 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
{
"name": "quill-form",
"version": "0.1.3",
"description": "Quill Extension for Form Bindings",
"main": "dist/quill-form.js",
"repository": {
"type": "git",
"url": "git+https://github.com/weavy/quill-form.git"
},
"keywords": [
"form",
"quill",
"editor"
],
"author": "weavy",
"license": "MIT",
"bugs": {
"url": "https://github.com/weavy/quill-form/issues"
},
"homepage": "https://github.com/weavy/quill-form#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.15.0",
"webpack-cli": "^3.1.0"
},
"peerDependencies": {
"quill": "^1.3.5"
},
"scripts": {
"build": "webpack --mode=production",
"debug": "webpack --mode=development"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"rules": {
"eqeqeq": [
2,
"allow-null"
],
"no-unused-vars": [
1,
{
"vars": "local",
"args": "none"
}
],
"no-console": 0
},
"env": {
"browser": true,
"node": true
}
}
}