2022-05-17 16:59:57 +08:00
|
|
|
{
|
|
|
|
"name": "@logto/integration-tests",
|
2023-12-06 16:13:56 +08:00
|
|
|
"version": "1.4.3",
|
2022-05-17 16:59:57 +08:00
|
|
|
"description": "Integration tests for Logto.",
|
|
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"private": true,
|
2022-12-12 21:15:09 +08:00
|
|
|
"type": "module",
|
|
|
|
"imports": {
|
|
|
|
"#src/*": "./lib/*"
|
|
|
|
},
|
2022-05-17 16:59:57 +08:00
|
|
|
"scripts": {
|
2022-12-12 21:15:09 +08:00
|
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
|
|
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
2023-09-14 17:28:00 +08:00
|
|
|
"test": "pnpm build && pnpm test:api && pnpm test:experience && pnpm test:console",
|
2023-03-06 13:45:14 +08:00
|
|
|
"test:api": "pnpm test:only -i ./lib/tests/api/",
|
2023-09-15 00:50:13 +08:00
|
|
|
"test:experience": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/experience/",
|
2023-09-14 17:28:00 +08:00
|
|
|
"test:console": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/console/",
|
2022-12-12 21:52:17 +08:00
|
|
|
"lint": "eslint --ext .ts src",
|
2022-05-17 16:59:57 +08:00
|
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
2022-08-12 18:07:16 +08:00
|
|
|
"start": "pnpm test"
|
2022-05-17 16:59:57 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-16 11:19:54 +08:00
|
|
|
"@apidevtools/swagger-parser": "^10.1.0",
|
2023-05-22 13:31:45 +08:00
|
|
|
"@jest/test-sequencer": "^29.5.0",
|
2022-10-14 14:57:27 +08:00
|
|
|
"@jest/types": "^29.1.2",
|
2023-11-03 13:14:52 +08:00
|
|
|
"@logto/connector-kit": "workspace:^2.0.0",
|
2023-12-15 16:59:48 +08:00
|
|
|
"@logto/core-kit": "workspace:^",
|
2023-12-02 15:22:27 +08:00
|
|
|
"@logto/js": "^3.0.1",
|
|
|
|
"@logto/node": "^2.2.0",
|
2023-12-06 16:13:56 +08:00
|
|
|
"@logto/schemas": "workspace:^1.12.0",
|
2023-10-07 13:39:33 +08:00
|
|
|
"@logto/shared": "workspace:^3.0.0",
|
2023-12-22 15:16:49 +08:00
|
|
|
"@silverhand/eslint-config": "5.0.0",
|
2024-01-29 19:39:27 +08:00
|
|
|
"@silverhand/essentials": "^2.8.8",
|
2023-12-22 15:16:49 +08:00
|
|
|
"@silverhand/ts-config": "5.0.0",
|
2023-03-07 14:54:57 +08:00
|
|
|
"@types/jest": "^29.4.0",
|
2023-12-11 09:10:53 +08:00
|
|
|
"@types/node": "^20.9.5",
|
2022-07-27 10:09:13 +08:00
|
|
|
"dotenv": "^16.0.0",
|
2023-07-08 01:17:21 +08:00
|
|
|
"eslint": "^8.44.0",
|
2023-09-12 18:42:15 +08:00
|
|
|
"expect-puppeteer": "^9.0.0",
|
2023-12-26 02:59:22 +00:00
|
|
|
"got": "^14.0.0",
|
2023-12-22 15:16:49 +08:00
|
|
|
"jest": "^29.7.0",
|
2023-11-09 16:57:33 +08:00
|
|
|
"jest-matcher-specific-error": "^1.0.0",
|
2023-06-01 12:37:59 +08:00
|
|
|
"jest-puppeteer": "^9.0.0",
|
2023-11-09 16:57:33 +08:00
|
|
|
"jose": "^5.0.0",
|
2022-12-13 18:11:51 +08:00
|
|
|
"node-fetch": "^3.3.0",
|
2023-11-16 11:19:54 +08:00
|
|
|
"openapi-schema-validator": "^12.1.3",
|
|
|
|
"openapi-types": "^12.1.3",
|
2023-07-08 01:17:21 +08:00
|
|
|
"prettier": "^3.0.0",
|
2023-08-30 16:17:19 +08:00
|
|
|
"puppeteer": "^21.0.0",
|
2022-06-16 13:00:01 +08:00
|
|
|
"text-encoder": "^0.0.4",
|
2023-12-22 15:16:49 +08:00
|
|
|
"typescript": "^5.3.3"
|
2022-05-17 16:59:57 +08:00
|
|
|
},
|
2022-11-06 00:29:28 +08:00
|
|
|
"engines": {
|
2023-12-11 09:10:53 +08:00
|
|
|
"node": "^20.9.0"
|
2022-11-06 00:29:28 +08:00
|
|
|
},
|
2022-05-17 16:59:57 +08:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "@silverhand"
|
|
|
|
},
|
2023-09-26 14:42:02 +08:00
|
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
|
|
"dependencies": {
|
|
|
|
"otplib": "^12.0.1"
|
|
|
|
}
|
2022-05-17 16:59:57 +08:00
|
|
|
}
|