forked from NodeBB/nodebb-plugin-glossary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.1 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.1 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
50
51
52
53
{
"name": "nodebb-plugin-glossary",
"version": "2.0.0",
"description": "A glossary plugin",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/NodeBB/nodebb-plugin-glossary"
},
"keywords": [
"nodebb",
"plugin",
"glossary"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": {
"name": "barisusakli",
"email": "baris@nodebb.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeBB/nodebb-plugin-glossary/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^4.0.0"
},
"dependencies": {
"csvtojson": "^2.0.10",
"lodash": "^4.17.21",
"validator": "^13.7.0"
},
"devDependencies": {
"@commitlint/cli": "14.1.0",
"@commitlint/config-angular": "14.1.0",
"eslint": "7.32.0",
"eslint-config-nodebb": "0.0.3",
"eslint-plugin-import": "2.25.2",
"husky": "7.0.4",
"lint-staged": "11.2.6"
}
}