-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.11 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
51
52
53
{
"name": "nodebb-plugin-firebase",
"version": "1.0.0-alpha",
"description": "",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/NodeBB/nodebb-plugin-firebase"
},
"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/NodeBB/nodebb-plugin-firebase/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-angular": "19.7.1",
"eslint": "9.21.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"lint-staged": "15.4.3"
},
"dependencies": {
"firebase": "^9.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"striptags": "^3.1.1"
}
}