-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.51 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
66
67
{
"name": "@solid/jose",
"version": "0.6.8",
"description": "JSON Object Signing and Encryption",
"main": "src/index.js",
"directories": {
"test": "test"
},
"files": [
"src",
"dist"
],
"scripts": {
"build-dist": "webpack --progress",
"build": "npm run build-dist",
"dist": "npm run build-dist",
"prepare": "npm run build-dist",
"test": "mocha --recursive test",
"jsdoc": "jsdoc -c jsdoc.json -r"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/jose.git"
},
"author": "",
"contributors": [
{
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
{
"name": "Greg Linklater",
"email": "[email protected]",
"url": "https://github.com/EternalDeiwos"
},
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/jose/issues"
},
"homepage": "https://github.com/solid/jose#README",
"dependencies": {
"@sinonjs/text-encoding": "^0.7.2",
"base64url": "^3.0.1",
"isomorphic-webcrypto": "^2.3.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^10.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"browser": {
"buffer": false,
"crypto": false,
"@sinonjs/text-encoding": false
}
}