-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.51 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
56
57
{
"name": "@convergence/jwt-util",
"description": "A utility for generating JSON Web Tokens for authenticating to Convergence.",
"keywords": [
"convergence",
"jwt"
],
"version": "0.2.0",
"main": "convergence-jwt.js",
"homepage": "http://convergencelabs.com",
"bugs": "https://github.com/convergencelabs/convergence-jwt-util/issues",
"license": "MIT",
"author": {
"name": "Convergence Labs, Inc.",
"email": "[email protected]",
"url": "http://convergencelabs.com"
},
"repository": {
"type": "git",
"url": "https://github.com/convergencelabs/convergence-jwt-util.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"jsonwebtoken": "8.5.1"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.14",
"@babel/plugin-transform-modules-commonjs": "7.13.8",
"babel-plugin-add-module-exports": "1.0.4",
"fs-extra": "9.1.0",
"eslint": "7.23.0",
"eslint-config-defaults": "9.0.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-concat": "2.6.1",
"gulp-eslint": "6.0.0",
"gulp-header": "2.0.9",
"gulp-istanbul": "1.1.3",
"gulp-mocha": "8.0.0",
"gulp-plumber": "1.2.1",
"gulp-sourcemaps": "3.0.0",
"gulp-uglify": "3.0.2",
"istanbul": "0.4.5",
"mocha": "8.3.2",
"should": "13.2.3"
},
"scripts": {
"clean": "gulp clean",
"test": "gulp test",
"dist": "gulp dist"
}
}