-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 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
{
"name": "macaroons.js",
"version": "0.3.9",
"description": "Javascript implementation of Macaroons: Cookies with Contextual Caveats for Decentralized Authorization in the Cloud.",
"readmeFilename": "README.md",
"main": "index.js",
"scripts": {
"build": "npx grunt",
"test": "npx grunt test",
"coverage": "npx grunt test run:badges",
"before_deploy": "npx grunt package"
},
"repository": {
"type": "git",
"url": "https://github.com/nitram509/macaroons.js"
},
"keywords": [
"security",
"authentication",
"crypto",
"cloud",
"microservices",
"cookies",
"caveats",
"authorization",
"macaroons"
],
"author": {
"name": "Martin W. Kirst",
"url": "https://twitter.com/nitram509"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nitram509/macaroons.js/issues"
},
"homepage": "https://github.com/nitram509/macaroons.js",
"engines": {
"node": ">=12",
"npm": ">=1.4"
},
"dependencies": {
"ecma-nacl": "^2.5.1",
"typedarray-to-buffer": "^4.0.0"
},
"devDependencies": {
"@types/node": "^16.11.58",
"@types/jest": "^29.0.1",
"jest": "^29.0.3",
"grunt": "~1.5.3",
"grunt-cli": "~1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-run": "^0.8.1",
"grunt-ts": "^6.0.0-beta.22",
"typescript": "^4.8.3",
"ts-node": "^10.9.1",
"jest-coverage-badges": "^1.1.2"
},
"directories": {
"lib": "./lib"
}
}