2022-05-17 16:59:57 +08:00
|
|
|
{
|
|
|
|
"name": "@logto/integration-tests",
|
2023-09-18 18:47:19 +08:00
|
|
|
"version": "1.4.1",
|
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-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-04-17 18:10:14 +08:00
|
|
|
"@logto/connector-kit": "workspace:^1.1.0",
|
2023-06-01 17:01:00 +08:00
|
|
|
"@logto/js": "^2.1.1",
|
|
|
|
"@logto/node": "^2.1.1",
|
2023-10-07 13:39:33 +08:00
|
|
|
"@logto/schemas": "workspace:^1.9.2",
|
|
|
|
"@logto/shared": "workspace:^3.0.0",
|
2023-07-08 01:17:21 +08:00
|
|
|
"@silverhand/eslint-config": "4.0.1",
|
2023-09-03 02:11:22 +08:00
|
|
|
"@silverhand/essentials": "^2.8.4",
|
2023-07-08 01:17:21 +08:00
|
|
|
"@silverhand/ts-config": "4.0.0",
|
2023-03-07 14:54:57 +08:00
|
|
|
"@types/jest": "^29.4.0",
|
2023-01-07 20:42:10 +08:00
|
|
|
"@types/node": "^18.11.18",
|
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-06-07 08:10:27 +00:00
|
|
|
"got": "^13.0.0",
|
2023-03-07 14:54:57 +08:00
|
|
|
"jest": "^29.5.0",
|
2023-06-01 12:37:59 +08:00
|
|
|
"jest-puppeteer": "^9.0.0",
|
2022-12-13 18:11:51 +08:00
|
|
|
"node-fetch": "^3.3.0",
|
2022-07-07 20:52:34 +08:00
|
|
|
"openapi-schema-validator": "^12.0.0",
|
|
|
|
"openapi-types": "^12.0.0",
|
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-03-21 19:37:51 +08:00
|
|
|
"typescript": "^5.0.0"
|
2022-05-17 16:59:57 +08:00
|
|
|
},
|
2022-11-06 00:29:28 +08:00
|
|
|
"engines": {
|
2023-01-07 20:42:10 +08:00
|
|
|
"node": "^18.12.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
|
|
|
}
|