-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.42 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
54
55
{
"name": "@staffbase/staffbase-plugin-sdk",
"version": "1.3.1",
"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 --ext .js,.jsx,.ts,.tsx .",
"fix": "eslint --ext .js,.jsx,.ts,.tsx --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": ">=14.0.0"
},
"author": "Hassaan Zaidi <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@staffbase/eslint-config-staffbase": "^1.0.0",
"babel-jest": "^29.3.1",
"dmd-bitbucket": "^0.1.10",
"eslint": "^8.32.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "11.1.0",
"handlebars": "^4.7.7",
"jest": "^29.3.1",
"jsdoc-to-markdown": "^8.0.1",
"pre-commit": "^1.2.2"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"node-rsa": "^1.1.1"
}
}