-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
58
59
60
61
62
63
64
65
{
"name": "@vanioinformatika/jwt-wrapper",
"version": "2.0.5",
"description": "A wrapper around the jsonwebtoken npm module that handles key ids.",
"author": "Gyula Szalai <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Gyula Szalai",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vanioinformatika/node-jwt-wrapper.git"
},
"bugs": {
"url": "https://github.com/vanioinformatika/node-jwt-wrapper/issues"
},
"keywords": [
"node",
"jwt",
"jsonwebtoken"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">6.9"
},
"scripts": {
"compile": "tsc",
"coverage": "nyc npm run test",
"coverage:ci": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"test": "mocha --exit --require ts-node/register \"test/**/*.spec.ts\"",
"tslint": "tslint --fix src/**/*.ts test/**/*.ts",
"preversion": "git push && npm test",
"version": "npm run compile && git add -A dist",
"postversion": "git push && git push --tags"
},
"dependencies": {
"base64url": "^3.0.1",
"debug": "^4.1.1",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.2",
"@types/debug": "^4.1.5",
"@types/dirty-chai": "^2.0.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@types/util.promisify": "^1.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.9",
"dirty-chai": "^2.0.1",
"mocha": "^7.0.1",
"mocha-junit-reporter": "^1.23.3",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.8.2"
}
}