-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.41 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
{
"name": "ep_oae",
"description": "Open Academic Environment (OAE) Etherpad Plugin",
"version": "9.0.0",
"homepage": "http://www.oaeproject.org",
"author": {
"name": "The Apereo Foundation",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/oaeproject/ep_oae.git"
},
"bugs": {
"url": "https://github.com/oaeproject/ep_oae/issues"
},
"licenses": [
{
"type": "ECLv2",
"url": "http://opensource.org/licenses/ecl2.php"
}
],
"dependencies": {
"ioredis": "^4.14.0"
},
"devDependencies": {
"xo": "^0.24.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"lint": "xo --prettier --quiet '**/*.js'"
},
"xo": {
"prettier": true,
"extends": [
"prettier"
],
"plugins": [
"prettier"
],
"ignores": [
"static/**"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"promise/prefer-await-to-then": "off",
"capitalized-comments": "off",
"max-params": "off",
"max-nested-callbacks": "off",
"prettier/prettier": "error",
"no-use-before-define": "off",
"import/no-unresolved": [
2,
{
"commonjs": true,
"amd": true
}
]
}
}
}