-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 986 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 986 Bytes
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
{
"name": "@netnexus/node-cborwebtoken",
"version": "2.1.1",
"description": "Implementation of CBOR Web Tokens for node",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"author": "NetNexus",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/netnexus/node-cborwebtoken.git"
},
"dependencies": {
"cbor": "^7.0.5",
"cose-js": "^0.4.2"
},
"files": [
"dist/"
],
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"scripts": {
"test": "tslint -p . && tsc && mocha ./dist/test/*.spec.js"
},
"bugs": {
"url": "https://github.com/netnexus/node-cborwebtoken/issues"
},
"homepage": "https://github.com/netnexus/node-cborwebtoken#readme",
"directories": {
"test": "test"
},
"keywords": [
"cwt",
"node",
"cbor",
"cborwebtoken"
]
}