-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
55
56
57
{
"name": "@staffbase/staffbase-plugin-sdk",
"version": "1.3.7",
"description": "Staffbase Plugin SDK for Javascript / Node.js",
"main": "./dist/index.js",
"scripts": {
"test": "npm run build && jest",
"test:verbose": "npm run build && jest --verbose",
"test:coverage": "npm run build && jest --coverage",
"lint": "eslint .",
"fix": "eslint --fix .",
"build": "babel src --out-dir dist",
"prepublish": "npm run build && npm run readme",
"readme": "node docSrc/buildDoc.js"
},
"files": [
"dist",
"docs"
],
"keywords": [
"staffbase",
"sdk",
"plugin",
"jwt",
"authentication"
],
"repository": {
"type": "git",
"url": "https://github.com/Staffbase/plugins-sdk-nodejs"
},
"engines": {
"node": ">=20.0.0"
},
"author": "Hassaan Zaidi <hassaan@staffbase.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.29.0",
"babel-jest": "^30.2.0",
"dmd-bitbucket": "^0.1.10",
"eslint": "^10.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-n": "^17.24.0",
"handlebars": "^4.7.9",
"jest": "^30.2.0",
"jsdoc-to-markdown": "^9.1.3",
"pre-commit": "^1.2.2"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"node-rsa": "^1.1.1"
},
"overrides": {
"cross-spawn": ">=7.0.6"
}
}