-
Notifications
You must be signed in to change notification settings - Fork 582
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.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
{
"name": "@fluidframework/test-tools",
"version": "3.0.0",
"description": "Fluid test tools",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "tools/test-tools"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/getTestPort.js",
"types": "dist/getTestPort.d.ts",
"bin": {
"assign-test-ports": "bin/assign-test-ports"
},
"scripts": {
"build": "fluid-build --task build",
"build:compile": "fluid-build --task compile",
"build:test": "tsc --project ./src/test/tsconfig.json",
"clean": "rimraf --glob dist \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"format": "npm run prettier:fix",
"lint": "fluid-build --task lint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check . --cache --ignore-path ../../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore",
"test": "mocha",
"tsc": "tsc"
},
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.65.0",
"@fluidframework/eslint-config-fluid": "^9.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "~22.19.17",
"eslint": "~9.39.1",
"eslint-config-prettier": "~10.1.8",
"jiti": "^2.6.1",
"mocha": "^11.7.5",
"mocha-multi-reporters": "^1.5.1",
"prettier": "~3.0.3",
"rimraf": "^6.1.3",
"typescript": "~5.4.5"
},
"packageManager": "pnpm@11.12.0+sha512.820a6fbd0d9f04c226638002aead1e45340a9139dd5dc077c1d83ef44aa2481c8eb6637b4c9aa696a3c7e35ba818e49cf27213e5f2b91138d09b7a3e26e898ba"
}