-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "keychain",
"version": "1.1.0",
"description": "Manage JWK key sets and issue/verify JWT tokens using public key signatures.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"test": "make test",
"compile": "make",
"lint": "make lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/insurello/keychain.git"
},
"keywords": [
"jwt",
"jwk",
"pki"
],
"author": {
"name": "Niklas Holmgren",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/insurello/keychain/issues"
},
"homepage": "https://github.com/insurello/keychain#readme",
"dependencies": {
"@types/jsonwebtoken": "^7.2.8",
"io-ts": "^1.3.0",
"jsonwebtoken": "^8.3.0",
"jwk-to-pem": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-insurello": "git+https://github.com/insurello/tslint-insurello.git",
"typescript": "^3.0.1"
}
}