66 строки
2.6 KiB
JSON
66 строки
2.6 KiB
JSON
{
|
|
"name": "@fluid-tools/benchmark",
|
|
"version": "0.51.0",
|
|
"description": "Benchmarking tools",
|
|
"homepage": "https://fluidframework.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/FluidFramework.git",
|
|
"directory": "tools/benchmark"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Microsoft and contributors",
|
|
"sideEffects": false,
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"api": "npm run build:docs",
|
|
"build": "concurrently npm:build:compile npm:lint && npm run build:docs",
|
|
"build:compile": "npm run tsc && npm run build:test",
|
|
"build:docs": "api-extractor run --local && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/",
|
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
"ci:build:docs": "api-extractor run && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/",
|
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
"eslint": "eslint src",
|
|
"eslint:fix": "eslint src --fix",
|
|
"format": "npm run prettier:fix",
|
|
"lint": "npm run prettier && npm run eslint",
|
|
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
"perf": "mocha --config ./.mocharc.cjs --v8-expose-gc --timeout 999999 --perfMode --fgrep @Benchmark --reporter ./dist/MochaReporter.js \"./dist/**/*.tests.js\"",
|
|
"prettier": "prettier --check . --cache --ignore-path ../../.prettierignore",
|
|
"prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore",
|
|
"test": "npm run test:mocha",
|
|
"test:mocha": "mocha \"dist/test/**/*.js\"",
|
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
"tsc": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"chai": "^4.2.0",
|
|
"chalk": "^4.1.2",
|
|
"easy-table": "^1.1.1",
|
|
"mocha": "^10.0.0",
|
|
"mocha-multi-reporters": "^1.5.1",
|
|
"moment": "^2.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"@fluid-internal/mocha-test-setup": "~2.0.0-rc.3.0.3",
|
|
"@fluidframework/build-common": "^2.0.3",
|
|
"@fluidframework/eslint-config-fluid": "^5.2.0",
|
|
"@microsoft/api-extractor": "^7.45.1",
|
|
"@types/benchmark": "^2.1.0",
|
|
"@types/chai": "^4.3.4",
|
|
"@types/easy-table": "^0.0.32",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^14.18.0",
|
|
"concurrently": "^8.2.1",
|
|
"copyfiles": "^2.4.1",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "~8.55.0",
|
|
"prettier": "~3.0.3",
|
|
"rimraf": "^2.6.2",
|
|
"typescript": "~5.1.6"
|
|
},
|
|
"packageManager": "pnpm@8.15.8+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392"
|
|
}
|