forked from go-macaroon/js-macaroon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "@unional/macaroon",
"version": "0.0.0-development",
"description": "Macaroons: cookies with contextual caveats for decentralized authorization in the cloud.",
"keywords": [
"authorization",
"cookie",
"macaroon"
],
"homepage": "https://github.com/unional/js-macaroon",
"bugs": {
"url": "https://github.com/unional/js-macaroon/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unional/js-macaroon.git"
},
"license": "BSD-3-Clause",
"author": "Roger Peppe (rogpeppe@gmail.com)",
"contributors": [
"Jeff Pihach (https://fromanegg.com)"
],
"files": [
"macaroon.js",
"macaroon.js.map",
"macaroon.d.ts"
],
"main": "macaroon.js",
"types": "macaroon.d.ts",
"scripts": {
"build": "tsc",
"check": "yarn lint && yarn test",
"clean": "rm -rf node_modules",
"doc": "jsdoc2md --files ./src/macaroon.ts --configure ./jsdoc2md.json > API.md",
"lint": "eslint .",
"test": "node test/test.js"
},
"dependencies": {
"sjcl": "^1.0.6",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/node": "^13.13.0",
"@types/sjcl": "^1.0.29",
"eslint": "^6.8.0",
"eslint-plugin-harmony": "^3.0.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^4.0.1",
"rewire": "^5.0.0",
"tape": "^4.13.2",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=8"
}
}