2022-05-17 03:59:57 -05:00
|
|
|
{
|
|
|
|
"name": "@logto/integration-tests",
|
2024-05-14 07:27:55 -05:00
|
|
|
"version": "1.6.1",
|
2022-05-17 03:59:57 -05:00
|
|
|
"description": "Integration tests for Logto.",
|
|
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"private": true,
|
2022-12-12 08:15:09 -05:00
|
|
|
"type": "module",
|
|
|
|
"imports": {
|
|
|
|
"#src/*": "./lib/*"
|
|
|
|
},
|
2022-05-17 03:59:57 -05:00
|
|
|
"scripts": {
|
2022-12-12 08:15:09 -05:00
|
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
|
|
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
2023-09-14 04:28:00 -05:00
|
|
|
"test": "pnpm build && pnpm test:api && pnpm test:experience && pnpm test:console",
|
2023-03-06 00:45:14 -05:00
|
|
|
"test:api": "pnpm test:only -i ./lib/tests/api/",
|
2023-09-14 11:50:13 -05:00
|
|
|
"test:experience": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/experience/",
|
2023-09-14 04:28:00 -05:00
|
|
|
"test:console": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/console/",
|
2022-12-12 08:52:17 -05:00
|
|
|
"lint": "eslint --ext .ts src",
|
2022-05-17 03:59:57 -05:00
|
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
2022-08-12 05:07:16 -05:00
|
|
|
"start": "pnpm test"
|
2022-05-17 03:59:57 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-15 22:19:54 -05:00
|
|
|
"@apidevtools/swagger-parser": "^10.1.0",
|
2023-05-22 00:31:45 -05:00
|
|
|
"@jest/test-sequencer": "^29.5.0",
|
2022-10-14 01:57:27 -05:00
|
|
|
"@jest/types": "^29.1.2",
|
2024-04-10 08:27:24 -05:00
|
|
|
"@logto/connector-kit": "workspace:^3.0.0",
|
2023-12-15 03:59:48 -05:00
|
|
|
"@logto/core-kit": "workspace:^",
|
2024-03-25 05:34:06 -05:00
|
|
|
"@logto/js": "^4.1.1",
|
2024-04-16 11:31:34 -05:00
|
|
|
"@logto/node": "^2.4.7",
|
2024-05-31 10:48:43 -05:00
|
|
|
"@logto/schemas": "workspace:^1.17.0",
|
2024-05-14 07:27:55 -05:00
|
|
|
"@logto/shared": "workspace:^3.1.1",
|
2024-04-18 07:26:37 -05:00
|
|
|
"@silverhand/eslint-config": "6.0.1",
|
2024-05-17 03:02:05 -05:00
|
|
|
"@silverhand/essentials": "^2.9.1",
|
2024-04-18 07:26:37 -05:00
|
|
|
"@silverhand/ts-config": "6.0.0",
|
2023-03-07 01:54:57 -05:00
|
|
|
"@types/jest": "^29.4.0",
|
2023-12-10 20:10:53 -05:00
|
|
|
"@types/node": "^20.9.5",
|
2022-07-26 21:09:13 -05:00
|
|
|
"dotenv": "^16.0.0",
|
2024-04-18 07:26:37 -05:00
|
|
|
"eslint": "^8.56.0",
|
2024-02-22 22:58:11 -05:00
|
|
|
"expect-puppeteer": "^10.0.0",
|
2023-12-22 02:16:49 -05:00
|
|
|
"jest": "^29.7.0",
|
2023-11-09 03:57:33 -05:00
|
|
|
"jest-matcher-specific-error": "^1.0.0",
|
2024-03-26 21:21:46 -05:00
|
|
|
"jest-puppeteer": "^10.0.1",
|
2023-11-09 03:57:33 -05:00
|
|
|
"jose": "^5.0.0",
|
2024-03-29 05:10:13 -05:00
|
|
|
"ky": "^1.2.3",
|
2023-11-15 22:19:54 -05:00
|
|
|
"openapi-schema-validator": "^12.1.3",
|
|
|
|
"openapi-types": "^12.1.3",
|
2023-07-07 12:17:21 -05:00
|
|
|
"prettier": "^3.0.0",
|
2024-04-18 05:26:58 -05:00
|
|
|
"puppeteer": "^22.6.5",
|
2022-06-16 00:00:01 -05:00
|
|
|
"text-encoder": "^0.0.4",
|
2024-05-13 03:11:50 -05:00
|
|
|
"typescript": "^5.3.3",
|
|
|
|
"zod": "^3.22.4"
|
2022-05-17 03:59:57 -05:00
|
|
|
},
|
2022-11-05 11:29:28 -05:00
|
|
|
"engines": {
|
2023-12-10 20:10:53 -05:00
|
|
|
"node": "^20.9.0"
|
2022-11-05 11:29:28 -05:00
|
|
|
},
|
2022-05-17 03:59:57 -05:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "@silverhand"
|
|
|
|
},
|
2023-09-26 01:42:02 -05:00
|
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
|
|
"dependencies": {
|
|
|
|
"otplib": "^12.0.1"
|
|
|
|
}
|
2022-05-17 03:59:57 -05:00
|
|
|
}
|