-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·47 lines (47 loc) · 1.03 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
{
"name": "nodebb-plugin-openedx-discussion",
"version": "0.1.0",
"description": "NodeBB plugin for integrating NodeBB discussion into Open edX.",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/edly-io/nodebb-plugin-openedx-discussion"
},
"keywords": [
"nodebb",
"plugin",
"openedx",
"discussion"
],
"scripts": {
"test": "mocha"
},
"author": {
"name": "edly",
"email": "[email protected]"
},
"license": "GPL-v3.0-or-later",
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-angular": "^7.3.1",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"expect": "^24.8.0",
"mocha": "^6.1.4",
"supertest": "^4.0.2"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.0"
},
"_moduleAliases": {
"@root": ".",
"@lib": "lib",
"@utils": "utils"
}
}