forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.62 KB
/
package.json
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
{
"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": "[email protected]+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392"
}