UNPKG

719 BJSONView Raw
1{
2 "name": "jwt-simple",
3 "description": "JWT(JSON Web Token) encode and decode module",
4 "version": "0.5.6",
5 "author": "Kazuhito Hokamura <k.hokamura@gmail.com>",
6 "repository": {
7 "type": "git",
8 "url": "http://github.com/hokaccha/node-jwt-simple.git"
9 },
10 "devDependencies": {
11 "expect.js": "^0.3.1",
12 "istanbul": "^0.4.2",
13 "mocha": "^6.0.2"
14 },
15 "scripts": {
16 "test": "istanbul cover _mocha test/*.js"
17 },
18 "license": "MIT",
19 "engines": {
20 "node": ">= 0.4.0"
21 },
22 "files": [
23 "README.md",
24 "index.js",
25 "index.d.ts",
26 "lib"
27 ],
28 "keywords": [
29 "jwt",
30 "encode",
31 "decode"
32 ],
33 "main": "./index",
34 "types": "./index.d.ts",
35 "typings": "./index.d.ts"
36}