@fluidframework/fluid-runner 2.0.0-internal.3.1.0 → 2.0.0-internal.3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/fluid-runner +0 -0
- package/package.json +98 -98
package/bin/fluid-runner
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,99 +1,99 @@
|
|
|
1
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
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}
|
|
2
|
+
"name": "@fluidframework/fluid-runner",
|
|
3
|
+
"version": "2.0.0-internal.3.2.0",
|
|
4
|
+
"description": "Utility for running various functionality inside a Fluid Framework environment",
|
|
5
|
+
"homepage": "https://fluidframework.com",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/microsoft/FluidFramework.git",
|
|
9
|
+
"directory": "packages/tools/fluid-runner"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "Microsoft and contributors",
|
|
13
|
+
"main": "dist/index.js",
|
|
14
|
+
"types": "dist/index.d.ts",
|
|
15
|
+
"bin": {
|
|
16
|
+
"fluid-runner": "bin/fluid-runner"
|
|
17
|
+
},
|
|
18
|
+
"nyc": {
|
|
19
|
+
"all": true,
|
|
20
|
+
"cache-dir": "nyc/.cache",
|
|
21
|
+
"exclude": [
|
|
22
|
+
"src/test/**/*.ts",
|
|
23
|
+
"dist/test/**/*.js"
|
|
24
|
+
],
|
|
25
|
+
"exclude-after-remap": false,
|
|
26
|
+
"include": [
|
|
27
|
+
"src/**/*.ts",
|
|
28
|
+
"dist/**/*.js"
|
|
29
|
+
],
|
|
30
|
+
"report-dir": "nyc/report",
|
|
31
|
+
"reporter": [
|
|
32
|
+
"cobertura",
|
|
33
|
+
"html",
|
|
34
|
+
"text"
|
|
35
|
+
],
|
|
36
|
+
"temp-directory": "nyc/.nyc_output"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@fluidframework/aqueduct": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
40
|
+
"@fluidframework/common-definitions": "^0.20.1",
|
|
41
|
+
"@fluidframework/container-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
42
|
+
"@fluidframework/container-loader": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
43
|
+
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
44
|
+
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
45
|
+
"@fluidframework/odsp-driver": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
46
|
+
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
47
|
+
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
48
|
+
"json2csv": "^5.0.7",
|
|
49
|
+
"yargs": "13.2.2"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@fluid-tools/build-cli": "^0.10.0",
|
|
53
|
+
"@fluidframework/build-common": "^1.1.0",
|
|
54
|
+
"@fluidframework/eslint-config-fluid": "^2.0.0",
|
|
55
|
+
"@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.0.0-internal.3.1.0",
|
|
56
|
+
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
57
|
+
"@rushstack/eslint-config": "^2.5.1",
|
|
58
|
+
"@types/mocha": "^9.1.1",
|
|
59
|
+
"@types/node": "^14.18.36",
|
|
60
|
+
"@types/yargs": "^13",
|
|
61
|
+
"concurrently": "^6.2.0",
|
|
62
|
+
"cross-env": "^7.0.2",
|
|
63
|
+
"eslint": "~8.6.0",
|
|
64
|
+
"mocha": "^10.0.0",
|
|
65
|
+
"nyc": "^15.0.0",
|
|
66
|
+
"prettier": "~2.6.2",
|
|
67
|
+
"rimraf": "^2.6.2",
|
|
68
|
+
"typescript": "~4.5.5"
|
|
69
|
+
},
|
|
70
|
+
"typeValidation": {
|
|
71
|
+
"version": "2.0.0-internal.3.2.0",
|
|
72
|
+
"previousVersionStyle": "~previousMinor",
|
|
73
|
+
"baselineRange": ">=2.0.0-internal.3.1.0 <2.0.0-internal.3.2.0",
|
|
74
|
+
"baselineVersion": "2.0.0-internal.3.1.0",
|
|
75
|
+
"broken": {}
|
|
76
|
+
},
|
|
77
|
+
"scripts": {
|
|
78
|
+
"build": "concurrently npm:build:compile npm:lint",
|
|
79
|
+
"build:commonjs": "npm run tsc && npm run build:test",
|
|
80
|
+
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
|
|
81
|
+
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
82
|
+
"build:full": "npm run build",
|
|
83
|
+
"build:full:compile": "npm run build:compile",
|
|
84
|
+
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
85
|
+
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
86
|
+
"eslint": "eslint --format stylish src",
|
|
87
|
+
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
88
|
+
"format": "npm run prettier:fix",
|
|
89
|
+
"lint": "npm run prettier && npm run eslint",
|
|
90
|
+
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
91
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
92
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
93
|
+
"test": "npm run test:mocha",
|
|
94
|
+
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
|
|
95
|
+
"test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
|
|
96
|
+
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
97
|
+
"tsc": "tsc"
|
|
98
|
+
}
|
|
99
|
+
}
|