-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "oaesh",
"description": "An interactive shell UI for the Apereo OAE backend (Hilary)",
"version": "0.2.2",
"homepage": "https://github.com/oaeproject/oaesh",
"author": {
"name": "Apereo Foundation",
"email": "oae@apereo.org"
},
"repository": {
"type": "git",
"url": "git://github.com/oaeproject/oaesh.git"
},
"bugs": {
"url": "https://github.com/oaeproject/oaesh/issues"
},
"bin": {
"oaesh": "bin/oaesh.js"
},
"dependencies": {
"colors": "latest",
"corporal": "latest",
"esm": "latest",
"oae-rest": "latest",
"ramda": "latest",
"read": "latest",
"sprintf-js": "latest",
"underscore": "latest",
"yargs": "^16.1.1"
},
"devDependencies": {
"prettier": "latest",
"xo": "^0.35.0"
},
"scripts": {
"lint": "node_modules/.bin/xo --prettier --quiet 'lib/**/*.js'",
"format": "node_modules/.bin/xo --fix --prettier --quiet 'lib/**/*.js'"
},
"license": "ECL-2.0",
"xo": {
"prettier": true,
"extends": [
"prettier"
],
"plugins": [
"prettier"
],
"ignores": [],
"rules": {
"node/prefer-promises/fs": "off",
"import/no-extraneous-dependencies": "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",
"no-warning-comments": "off",
"prefer-named-capture-group": "off",
"import/no-unresolved": "off"
},
"env": [
"mocha"
]
},
"engines": {
"node": ">=15.0.0"
}
}