-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.85 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
{
"name": "@canonical/jujulib",
"version": "7.0.0",
"description": "Juju API client",
"main": "dist/api/client.js",
"types": "dist/api/client.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf node_modules dist",
"generate-facades": "SCHEMA=generator/schema/schema.json JUJU_VERSION=$(cat generator/schema/juju-version.txt) JUJU_GIT_SHA=$(cat generator/schema/juju-git-sha.txt) node --no-warnings=ExperimentalWarning --loader ts-node/esm generator/index.ts",
"regenerate-all-facades": "node generator/schema/regenerate-all.js",
"store-schema": "./generator/scripts/store-schema.sh",
"generate-docs": "README_FOR_DOCS=true yarn generate-facades && typedoc api/* --out docs --entryPointStrategy expand --includeVersion --gitRemote upstream",
"lint": "eslint api/",
"format": "prettier --write '**/*.(js|ts|json|md)' && eslint --fix .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juju/js-libjuju.git"
},
"keywords": [
"juju",
"api",
"client"
],
"author": "Canonical (https://webteam.canonical.com/)",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/juju/js-libjuju/issues"
},
"homepage": "juju.github.io/js-libjuju/",
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "29.2.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"documentation": "14.0.2",
"eslint": "8.25.0",
"eslint-plugin-jest": "27.1.6",
"glob": "^8.0.3",
"jest": "29.3.1",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typedoc": "0.23.21",
"typescript": "4.9.4"
},
"dependencies": {
"@canonical/macaroon-bakery": "1.3.2",
"btoa": "1.2.1",
"websocket": "1.0.34",
"xhr2": "0.2.1"
}
}