forked from claude-wishnote/nodebb-plugin-custom-user-props
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
54
{
"name": "nodebb-plugin-custom-user-props",
"version": "1.1.0",
"description": "custom some user props",
"main": "library.js",
"repository": {
"type": "git",
"url": "git+https://github.com/claude-wishnote/nodebb-plugin-custom-user-props.git"
},
"keywords": [
"nodebb",
"plugin",
"custom",
"user",
"shell"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/claude-wishnote/nodebb-plugin-custom-user-props/issues"
},
"nbbpm": {
"compatibility": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-angular": "19.3.0",
"eslint": "9.x",
"eslint-config-nodebb": "0.2.1",
"eslint-plugin-import": "2.x",
"husky": "9.0.11",
"lint-staged": "15.2.7"
},
"homepage": "https://github.com/claude-wishnote/nodebb-plugin-custom-user-props#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "claude@atreez.com"
}