-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.09 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
{
"name": "bixby-jose",
"version": "0.1.2",
"description": "JavaScript Object Signing and Encryption (JOSE) components for Bixby.js.",
"keywords": [
"jose"
],
"author": {
"name": "Jared Hanson",
"email": "[email protected]",
"url": "https://www.jaredhanson.me/"
},
"repository": {
"type": "git",
"url": "git://github.com/bixbyjs/bixby-jose.git"
},
"bugs": {
"url": "https://github.com/bixbyjs/bixby-jose/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jaredhanson"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"assembly": {
"namespace": "jose",
"components": [
"jwt/main"
]
},
"directories": {
"com": "com"
},
"dependencies": {
"jose": "^4.3.7"
},
"devDependencies": {
"chai": "^4.3.4",
"make-node": "^0.3.5",
"mocha": "^9.1.3"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}