vitest/package.json
2021-12-04 04:34:32 +08:00

68 lines
1.6 KiB
JSON

{
"name": "vitest",
"version": "0.0.1",
"type": "module",
"description": "",
"keywords": [],
"homepage": "https://github.com/antfu/vitest#readme",
"bugs": {
"url": "https://github.com/antfu/vitest/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vitest.git"
},
"funding": "https://github.com/sponsors/antfu",
"license": "MIT",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"bin"
],
"bin": {
"vitest": "./bin/vitest.mjs"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint \"{src,test}/**/*.ts\"",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "npx vite-node src/cli.ts --",
"test:update": "nr test -u"
},
"devDependencies": {
"@antfu/eslint-config": "^0.11.1",
"@antfu/ni": "^0.11.0",
"@types/chai": "^4.2.22",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.11",
"bumpp": "^7.1.1",
"eslint": "^8.3.0",
"esno": "^0.12.1",
"typescript": "^4.5.2",
"vite": "^2.6.14"
},
"dependencies": {
"@jest/test-result": "^27.4.2",
"chai": "^4.3.4",
"fast-glob": "^3.2.7",
"jest-snapshot": "^27.4.2",
"jest-util": "^27.4.2",
"minimist": "^1.2.5",
"picocolors": "^1.0.0",
"vite-node": "v0.1.6"
}
}