-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.37 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
{
"name": "quill-url-embeds",
"version": "1.2.5",
"description": "Checks for URLs during typing and pasting and automatically converts them to embedded media.",
"main": "dist/index.js",
"babel": {
"presets": [
"es2015",
"stage-1"
]
},
"jest": {
"testEnvironment": "node",
"testMatch": [ "./tests/unit/**/*.test.js" ],
"verbose": true,
"moduleNameMapper": {
"~": "<rootDir>"
}
},
"scripts": {
"test": "jest --watch .",
"test:e2e": "testcafe chrome ./tests/e2e/**/*.test.js --app \"npm run dev\" --app-init-delay 5000 -S -s screenshots",
"build": "webpack --mode production --progress --colors --config webpack.prod.js",
"dev": "ENV NODE_ENV=development webpack-dev-server --mode development --hot --colors --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Human-Connection/quill-url-embeds.git"
},
"keywords": [
"quill",
"url",
"embeds",
"links",
"check",
"paste",
"type"
],
"author": "Jörg Bayreuther <jb@visualjerk.de> (https://github.com/visualjerk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Human-Connection/quill-url-embeds/issues"
},
"homepage": "https://github.com/Human-Connection/quill-url-embeds",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.7",
"testcafe": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"vue-loader": "^14.2.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"lodash": "^4.17.5",
"quill": "^1.3.6",
"quill-delta": "^3.6.2",
"vue": "^2.5.16"
}
}