-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 KB
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
67
68
69
70
71
{
"name": "@fusionauth/cli",
"version": "1.7.0",
"description": "FusionAuth CLI",
"main": "dist/index.js",
"files": [
"dist",
"resources/*"
],
"scripts": {
"build": "tsc && npm run copy-files",
"copy-files": "cp -r ./src/resources/ ./dist/commands/resources/",
"prepublishOnly": "npm run build",
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"fusionauth",
"oidc",
"oauth",
"themes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FusionAuth/fusionauth-node-cli.git"
},
"author": "FusionAuth",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FusionAuth/fusionauth-node-cli/issues"
},
"homepage": "https://github.com/FusionAuth/fusionauth-node-cli#readme",
"dependencies": {
"@comandeer/cli-spinner": "^1.0.2",
"@commander-js/extra-typings": "11.0.0",
"@faker-js/faker": "^8.4.1",
"@fusionauth/typescript-client": "1.47.0",
"bcryptjs": "^3.0.3",
"boxen": "^8.0.1",
"chalk": "5.3.0",
"chokidar": "3.5.3",
"command-exists": "^1.2.9",
"commander": "11.0.0",
"dotenv": "^17.3.1",
"figlet": "1.6.0",
"fs-extra": "11.1.1",
"html-to-text": "9.0.5",
"inquirer": "^13.3.0",
"log-symbols": "5.1.0",
"log-update": "5.0.1",
"merge": "2.1.1",
"queue": "7.0.0",
"remove-undefined-objects": "3.0.0",
"uuid": "9.0.0",
"yocto-spinner": "^1.1.0"
},
"devDependencies": {
"@types/figlet": "1.5.6",
"@types/fs-extra": "11.0.1",
"@types/html-to-text": "9.0.1",
"@types/node": "20.4.5",
"@types/uuid": "9.0.2",
"ts-node": "10.9.1",
"type-fest": "3.13.0",
"typescript": "5.1.6"
},
"bin": {
"fusionauth": "dist/index.js"
},
"type": "module"
}