-
Notifications
You must be signed in to change notification settings - Fork 567
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.66 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@fluid-tools/benchmark",
"version": "0.52.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": "cross-env FLUID_TEST_VERBOSE=1 mocha --config ./.mocharc.cjs --v8-expose-gc --timeout 999999 --perfMode --fgrep @Benchmark --fgrep @ExecutionTime --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": {
"chalk": "^4.1.2",
"easy-table": "^1.2.0",
"mocha": "^10.8.2",
"mocha-multi-reporters": "^1.5.1",
"moment": "^2.30.1"
},
"devDependencies": {
"@fluid-internal/mocha-test-setup": "~2.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/eslint-config-fluid": "^6.1.0",
"@microsoft/api-extractor": "^7.52.11",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.120",
"chai": "^5.2.1",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "~8.57.0",
"prettier": "~3.0.3",
"rimraf": "^4.4.1",
"typescript": "~5.4.5"
},
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
"pnpm": {
"overrides": {
"nanoid": "^3.3.9"
}
}
}