forked from NodeBB/nodebb-plugin-hashtags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.02 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
{
"name": "nodebb-plugin-hashtags",
"version": "2.1.3",
"description": "",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/julianlam/nodebb-plugin-hashtags"
},
"keywords": [
"nodebb",
"plugin"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": {
"name": "Julian Lam",
"email": "julian@nodebb.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/julianlam/nodebb-plugin-hashtags/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^1.17.0"
},
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-angular": "16.0.0",
"eslint": "8.7.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"husky": "7.0.4",
"lint-staged": "12.3.1"
},
"dependencies": {
"lodash": "^4.17.20"
}
}