-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.95 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
72
73
74
75
76
{
"name": "@workos/migrations",
"version": "2.5.0",
"description": "CLI tool to migrate data from various identity providers to WorkOS",
"type": "module",
"main": "dist/index.js",
"bin": {
"workos-migrate": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"*.md\" \"*.json\"",
"format:check": "prettier --check \"src/**/*.ts\" \"*.md\" \"*.json\"",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"workos",
"migration",
"cli",
"auth0",
"clerk",
"firebase",
"cognito"
],
"author": "WorkOS",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.1041.0",
"@workos-inc/node": "^10.0.0",
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"commander": "^15.0.0",
"csv-parse": "^6.2.1",
"csv-stringify": "^6.4.5",
"dotenv": "^17.4.2",
"fast-xml-parser": "^5.7.2",
"google-auth-library": "^10.6.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cli-progress": "^3.11.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"jest": "^30.3.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/workos/workos-migrations.git"
},
"engines": {
"node": ">=22.11.0"
}
}