forked from NodeBB/nodebb-theme-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "@chladnefazole/nodebb-theme-quickstart",
"version": "0.1.15",
"description": "NodeBB theme for No BS Czech",
"main": "lib/theme.js",
"keywords": [],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"eslint": "8.x",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-nodebb": "0.1.1",
"eslint-plugin-import": "2.x",
"husky": "5.0.9",
"lint-staged": "10.5.4"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/chladnefazole/nodebb-theme-quickstart"
},
"author": "Katelyn Nienaber"
}