-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
42 lines (42 loc) · 1.04 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
{
"author": "Roger Peppe ([email protected])",
"bugs": {
"url": "http://github.com/go-macaroon/js-macaroon/issues"
},
"contributors": [
"Jeff Pihach (https://fromanegg.com)"
],
"dependencies": {
"sjcl": "^1.0.6",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0"
},
"description": "Macaroons: cookies with contextual caveats for decentralized authorization in the cloud.",
"devDependencies": {
"eslint": "^5.7.0",
"jsdoc-to-markdown": "^4.0.1",
"rewire": "^4.0.1",
"tape": "^4.6.3"
},
"homepage": "http://github.com/go-macaroon/js-macaroon",
"keywords": [
"authorization",
"cookie",
"macaroon"
],
"license": "BSD-3-Clause",
"main": "macaroon.js",
"name": "macaroon",
"repository": {
"type": "git",
"url": "http://github.com/go-macaroon/js-macaroon.git"
},
"scripts": {
"lint": "eslint .",
"test": "node test/test.js",
"check": "npm run lint && npm t",
"clean": "rm -rf node_modules",
"doc": "jsdoc2md macaroon.js > README.md"
},
"version": "3.1.0"
}