vitest/package.json
2021-12-05 22:40:02 +08:00

79 lines
1.9 KiB
JSON

{
"name": "vitest",
"version": "0.0.17",
"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>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vitest": "./bin/vitest.mjs"
},
"files": [
"dist",
"bin",
"*.d.ts"
],
"scripts": {
"prepare": "esmo scripts/generate-types.ts",
"build": "rimraf dist && tsc -p src/tsconfig.json",
"lint": "eslint \"{src,test}/**/*.ts\"",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "node bin/vitest.mjs --dev",
"test:update": "nr test -u",
"watch": "tsc -p src/tsconfig.json --watch"
},
"dependencies": {
"@jest/test-result": "^27.4.2",
"@types/chai": "^4.2.22",
"@types/sinon-chai": "^3.2.6",
"chai": "^4.3.4",
"fast-glob": "^3.2.7",
"find-up": "^6.2.0",
"jest-snapshot": "^27.4.2",
"jest-util": "^27.4.2",
"jsdom": "^19.0.0",
"listr": "^0.14.3",
"minimist": "^1.2.5",
"ora": "^6.0.1",
"picocolors": "^1.0.0",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.11.1",
"@antfu/ni": "^0.11.0",
"@types/jsdom": "^16.2.13",
"@types/listr": "^0.14.4",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.11",
"@types/sinon": "^10.0.6",
"bumpp": "^7.1.1",
"eslint": "^8.3.0",
"esno": "^0.12.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.2",
"vite": "^2.6.14"
}
}