f2etest
Version:
Alibaba front-end testing setup tools
98 lines • 2.26 kB
JSON
{
"name": "f2etest",
"version": "1.1.0",
"description": "Alibaba front-end testing setup tools",
"keywords": [
"alibaba",
"front-end",
"f2e-spec",
"unit-test",
"e2e-test",
"jest",
"vitest",
"playwright",
"puppeteer",
"cypress"
],
"homepage": "https://alibaba.github.com/f2e-spec/",
"bugs": {
"url": "https://github.com/alibaba/f2e-spec/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba/f2e-spec"
},
"license": "MPL-2.0",
"author": {
"name": "Guo Yunhe",
"email": "i@guoyunhe.me",
"url": "https://guoyunhe.me/"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "dist/f2etest.js",
"files": [
"dist",
"templates",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": "prettier-config-ali",
"dependencies": {
"@clack/prompts": "^0.10.0",
"chalk": "^5.4.1",
"command-exists": "^1.2.9",
"commander": "^13.1.0",
"init-roll": "^1.4.0",
"prettier-config-ali": "^1.4.0"
},
"devDependencies": {
"@mdx-js/react": "^3.1.0",
"@types/command-exists": "^1.2.3",
"@types/node": "^20.17.31",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitest/coverage-v8": "^3.1.2",
"@vitest/ui": "^3.1.2",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-doc-ui": "^2.3.3",
"react-dom": "^18.3.1",
"rive": "^3.1.2",
"typescript": "^5.8.3",
"vitest": "^3.1.2",
"prettier-config-ali": "^1.4.0",
"eslint-config-ali": "^16.5.0"
},
"rive": {
"template": "cli",
"doc": {
"disabled": true
}
},
"engines": {
"node": ">=20.8.0"
},
"scripts": {
"build": "rive build",
"build:watch": "rive build --watch",
"lint": "eslint .",
"lint:fix": "prettier --write . && eslint --fix .",
"start": "rive start",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest"
}
}