-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 KB
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
{
"name": "ep_add_hyperlink",
"version": "0.0.2",
"description": "Plugin to add and export hyperlinks",
"author": {
"name": "ilmar.tyrk (Ilmar Türk)",
"email": "<ilmar.tyrk@gmail.com>"
},
"keywords": [
"etherpad",
"plugin",
"ep"
],
"license": "Apache2",
"repository": {
"type": "git",
"url": "https://github.com/citizenos/ep_add_hyperlink.git"
},
"bugs": {
"url": "https://github.com/citizenos/ep_add_hyperlink/issues"
},
"homepage": {
"url": "https://github.com/citizenos/ep_add_hyperlink/README.md"
},
"dependencies": {
"jsdom": "^22.1.0"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-etherpad": "^1.0.24",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.10.0"
},
"eslintConfig": {
"root": true,
"extends": "etherpad/plugin"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">= 10.13.0"
}
}