-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "quill-magic-url",
"version": "4.2.0",
"description": "Checks for URLs during typing and pasting and automatically converts them to links.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
},
"scripts": {
"build": "webpack -p --progress --colors & tsc --build",
"dev": "webpack-dev-server --progress --colors",
"test": "jest",
"test:e2e": "npm run dev & cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visualjerk/quill-magic-url.git"
},
"keywords": [
"quill",
"url",
"links",
"check",
"paste",
"type"
],
"author": "Jörg Bayreuther <[email protected]> (https://github.com/visualjerk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/visualjerk/quill-magic-url/issues"
},
"homepage": "https://github.com/visualjerk/quill-magic-url",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^26.0.24",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"cypress": "^7.7.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"typescript": "^4.7.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/quill": "^2.0.9",
"normalize-url": "^4.5.1",
"quill-delta": "^3.6.2"
}
}