-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "@canonical/macaroon-bakery",
"version": "1.3.3",
"description": "Perform macaroon aware network requests",
"files": [
"dist"
],
"main": "./dist/bakery.js",
"types": "./dist/bakery.d.ts",
"scripts": {
"build": "tsc && yarn copy-dts && webpack",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist",
"test": "jest",
"lint": "eslint .",
"format": "prettier --write '**/*.(js|ts|json|md)' && eslint --fix .",
"clean": "rm -rf node_modules dist",
"docs": "tsc && jsdoc2md -t jsdoc2md/README.hbs dist/bakery.js > README.md && yarn format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juju/bakeryjs.git"
},
"type": "module",
"author": "Canonical (https://webteam.canonical.com/)",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/juju/bakeryjs/issues"
},
"homepage": "https://github.com/juju/bakeryjs#readme",
"dependencies": {
"@types/sjcl": "1.0.30",
"macaroon": "3.0.4"
},
"devDependencies": {
"@babel/core": "7.18.5",
"@babel/preset-env": "7.18.2",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/jest": "29.2.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"atob": "2.1.2",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"btoa": "1.2.1",
"buffer": "6.0.3",
"copyfiles": "^2.4.1",
"crypto-browserify": "3.12.0",
"eslint": "^8.31.0",
"eslint-plugin-jest": "^27.2.0",
"jest": "29.2.2",
"jest-environment-jsdom": "29.2.2",
"jsdoc-to-markdown": "6.0.1",
"prettier": "^2.8.1",
"source-map-loader": "4.0.1",
"stream-browserify": "3.0.0",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"typescript": "4.9.4",
"util": "0.12.4",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"xhr-mock": "2.5.1"
}
}