@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.
Files changed (2) hide show
  1. package/bin/fluid-runner +0 -0
  2. package/package.json +98 -98
package/bin/fluid-runner CHANGED
File without changes
package/package.json CHANGED
@@ -1,99 +1,99 @@
1
1
  {
2
- "name": "@fluidframework/fluid-runner",
3
- "version": "2.0.0-internal.3.1.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
- "scripts": {
19
- "build": "concurrently npm:build:compile npm:lint",
20
- "build:commonjs": "npm run tsc && npm run build:test",
21
- "build:compile": "concurrently npm:build:commonjs npm:build:esnext",
22
- "build:esnext": "tsc --project ./tsconfig.esnext.json",
23
- "build:full": "npm run build",
24
- "build:full:compile": "npm run build:compile",
25
- "build:test": "tsc --project ./src/test/tsconfig.json",
26
- "clean": "rimraf dist lib *.tsbuildinfo *.build.log",
27
- "eslint": "eslint --format stylish src",
28
- "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
29
- "format": "npm run prettier:fix",
30
- "lint": "npm run prettier && npm run eslint",
31
- "lint:fix": "npm run prettier:fix && npm run eslint:fix",
32
- "prettier": "prettier --check . --ignore-path ../../../.prettierignore",
33
- "prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
34
- "test": "npm run test:mocha",
35
- "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
36
- "test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
37
- "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
38
- "tsc": "tsc"
39
- },
40
- "nyc": {
41
- "all": true,
42
- "cache-dir": "nyc/.cache",
43
- "exclude": [
44
- "src/test/**/*.ts",
45
- "dist/test/**/*.js"
46
- ],
47
- "exclude-after-remap": false,
48
- "include": [
49
- "src/**/*.ts",
50
- "dist/**/*.js"
51
- ],
52
- "report-dir": "nyc/report",
53
- "reporter": [
54
- "cobertura",
55
- "html",
56
- "text"
57
- ],
58
- "temp-directory": "nyc/.nyc_output"
59
- },
60
- "dependencies": {
61
- "@fluidframework/aqueduct": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
62
- "@fluidframework/common-definitions": "^0.20.1",
63
- "@fluidframework/container-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
64
- "@fluidframework/container-loader": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
65
- "@fluidframework/core-interfaces": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
66
- "@fluidframework/driver-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
67
- "@fluidframework/odsp-driver": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
68
- "@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
69
- "@fluidframework/telemetry-utils": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
70
- "json2csv": "^5.0.7",
71
- "yargs": "13.2.2"
72
- },
73
- "devDependencies": {
74
- "@fluid-tools/build-cli": "^0.9.0",
75
- "@fluidframework/build-common": "^1.1.0",
76
- "@fluidframework/eslint-config-fluid": "^2.0.0",
77
- "@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.0.0-internal.3.0.0",
78
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
79
- "@rushstack/eslint-config": "^2.5.1",
80
- "@types/mocha": "^9.1.1",
81
- "@types/node": "^14.18.36",
82
- "@types/yargs": "^13",
83
- "concurrently": "^6.2.0",
84
- "cross-env": "^7.0.2",
85
- "eslint": "~8.6.0",
86
- "mocha": "^10.0.0",
87
- "nyc": "^15.0.0",
88
- "prettier": "~2.6.2",
89
- "rimraf": "^2.6.2",
90
- "typescript": "~4.5.5"
91
- },
92
- "typeValidation": {
93
- "version": "2.0.0-internal.3.1.0",
94
- "previousVersionStyle": "~previousMinor",
95
- "baselineRange": ">=2.0.0-internal.3.0.0 <2.0.0-internal.3.1.0",
96
- "baselineVersion": "2.0.0-internal.3.0.0",
97
- "broken": {}
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
+ }