@fluidframework/fluid-static 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 (1) hide show
  1. package/package.json +106 -106
package/package.json CHANGED
@@ -1,107 +1,107 @@
1
1
  {
2
- "name": "@fluidframework/fluid-static",
3
- "version": "2.0.0-internal.3.1.0",
4
- "description": "A tool to enable consumption of Fluid Data Objects without requiring custom container code.",
5
- "homepage": "https://fluidframework.com",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/microsoft/FluidFramework.git",
9
- "directory": "packages/framework/fluid-static"
10
- },
11
- "license": "MIT",
12
- "author": "Microsoft and contributors",
13
- "sideEffects": false,
14
- "main": "dist/index.js",
15
- "module": "lib/index.js",
16
- "types": "dist/index.d.ts",
17
- "scripts": {
18
- "build": "concurrently npm:build:compile npm:lint && npm run build:docs",
19
- "build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
20
- "build:compile": "concurrently npm:build:commonjs npm:build:esnext",
21
- "build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
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
- "ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
27
- "clean": "rimraf dist *.tsbuildinfo *.build.log",
28
- "eslint": "eslint --format stylish src",
29
- "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
30
- "format": "npm run prettier:fix",
31
- "lint": "npm run prettier && npm run eslint",
32
- "lint:fix": "npm run prettier:fix && npm run eslint:fix",
33
- "prettier": "prettier --check . --ignore-path ../../../.prettierignore",
34
- "prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
35
- "test": "npm run test:mocha",
36
- "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
37
- "test:mocha": "mocha --recursive dist/test/**/*.spec.js -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
38
- "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
39
- "tsc": "tsc",
40
- "typetests:gen": "flub generate typetests --generate --dir .",
41
- "typetests:prepare": "flub generate typetests --prepare --dir . --pin"
42
- },
43
- "nyc": {
44
- "all": true,
45
- "cache-dir": "nyc/.cache",
46
- "exclude": [
47
- "src/test/**/*.ts",
48
- "dist/test/**/*.js"
49
- ],
50
- "exclude-after-remap": false,
51
- "include": [
52
- "src/**/*.ts",
53
- "dist/**/*.js"
54
- ],
55
- "report-dir": "nyc/report",
56
- "reporter": [
57
- "cobertura",
58
- "html",
59
- "text"
60
- ],
61
- "temp-directory": "nyc/.nyc_output"
62
- },
63
- "dependencies": {
64
- "@fluidframework/aqueduct": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
65
- "@fluidframework/common-definitions": "^0.20.1",
66
- "@fluidframework/common-utils": "^1.0.0",
67
- "@fluidframework/container-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
68
- "@fluidframework/container-loader": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
69
- "@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
70
- "@fluidframework/core-interfaces": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
71
- "@fluidframework/datastore-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
72
- "@fluidframework/protocol-definitions": "^1.1.0",
73
- "@fluidframework/request-handler": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
74
- "@fluidframework/runtime-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
75
- "@fluidframework/runtime-utils": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0"
76
- },
77
- "devDependencies": {
78
- "@fluid-tools/build-cli": "^0.9.0",
79
- "@fluidframework/build-common": "^1.1.0",
80
- "@fluidframework/build-tools": "^0.9.0",
81
- "@fluidframework/eslint-config-fluid": "^2.0.0",
82
- "@fluidframework/fluid-static-previous": "npm:@fluidframework/fluid-static@2.0.0-internal.3.0.0",
83
- "@fluidframework/map": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
84
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
85
- "@fluidframework/sequence": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0",
86
- "@microsoft/api-extractor": "^7.22.2",
87
- "@rushstack/eslint-config": "^2.5.1",
88
- "@types/mocha": "^9.1.1",
89
- "@types/node": "^14.18.36",
90
- "concurrently": "^6.2.0",
91
- "copyfiles": "^2.4.1",
92
- "cross-env": "^7.0.2",
93
- "eslint": "~8.6.0",
94
- "mocha": "^10.0.0",
95
- "nyc": "^15.0.0",
96
- "prettier": "~2.6.2",
97
- "rimraf": "^2.6.2",
98
- "typescript": "~4.5.5"
99
- },
100
- "typeValidation": {
101
- "version": "2.0.0-internal.3.1.0",
102
- "previousVersionStyle": "~previousMinor",
103
- "baselineRange": ">=2.0.0-internal.3.0.0 <2.0.0-internal.3.1.0",
104
- "baselineVersion": "2.0.0-internal.3.0.0",
105
- "broken": {}
106
- }
107
- }
2
+ "name": "@fluidframework/fluid-static",
3
+ "version": "2.0.0-internal.3.2.0",
4
+ "description": "A tool to enable consumption of Fluid Data Objects without requiring custom container code.",
5
+ "homepage": "https://fluidframework.com",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/microsoft/FluidFramework.git",
9
+ "directory": "packages/framework/fluid-static"
10
+ },
11
+ "license": "MIT",
12
+ "author": "Microsoft and contributors",
13
+ "sideEffects": false,
14
+ "main": "dist/index.js",
15
+ "module": "lib/index.js",
16
+ "types": "dist/index.d.ts",
17
+ "nyc": {
18
+ "all": true,
19
+ "cache-dir": "nyc/.cache",
20
+ "exclude": [
21
+ "src/test/**/*.ts",
22
+ "dist/test/**/*.js"
23
+ ],
24
+ "exclude-after-remap": false,
25
+ "include": [
26
+ "src/**/*.ts",
27
+ "dist/**/*.js"
28
+ ],
29
+ "report-dir": "nyc/report",
30
+ "reporter": [
31
+ "cobertura",
32
+ "html",
33
+ "text"
34
+ ],
35
+ "temp-directory": "nyc/.nyc_output"
36
+ },
37
+ "dependencies": {
38
+ "@fluidframework/aqueduct": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
39
+ "@fluidframework/common-definitions": "^0.20.1",
40
+ "@fluidframework/common-utils": "^1.1.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/container-runtime-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
44
+ "@fluidframework/core-interfaces": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
45
+ "@fluidframework/datastore-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
46
+ "@fluidframework/protocol-definitions": "^1.1.0",
47
+ "@fluidframework/request-handler": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
48
+ "@fluidframework/runtime-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
49
+ "@fluidframework/runtime-utils": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0"
50
+ },
51
+ "devDependencies": {
52
+ "@fluid-tools/build-cli": "^0.10.0",
53
+ "@fluidframework/build-common": "^1.1.0",
54
+ "@fluidframework/build-tools": "^0.10.0",
55
+ "@fluidframework/eslint-config-fluid": "^2.0.0",
56
+ "@fluidframework/fluid-static-previous": "npm:@fluidframework/fluid-static@2.0.0-internal.3.1.0",
57
+ "@fluidframework/map": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
58
+ "@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
59
+ "@fluidframework/sequence": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
60
+ "@microsoft/api-extractor": "^7.22.2",
61
+ "@rushstack/eslint-config": "^2.5.1",
62
+ "@types/mocha": "^9.1.1",
63
+ "@types/node": "^14.18.36",
64
+ "concurrently": "^6.2.0",
65
+ "copyfiles": "^2.4.1",
66
+ "cross-env": "^7.0.2",
67
+ "eslint": "~8.6.0",
68
+ "mocha": "^10.0.0",
69
+ "nyc": "^15.0.0",
70
+ "prettier": "~2.6.2",
71
+ "rimraf": "^2.6.2",
72
+ "typescript": "~4.5.5"
73
+ },
74
+ "typeValidation": {
75
+ "version": "2.0.0-internal.3.2.0",
76
+ "previousVersionStyle": "~previousMinor",
77
+ "baselineRange": ">=2.0.0-internal.3.1.0 <2.0.0-internal.3.2.0",
78
+ "baselineVersion": "2.0.0-internal.3.1.0",
79
+ "broken": {}
80
+ },
81
+ "scripts": {
82
+ "build": "concurrently npm:build:compile npm:lint && npm run build:docs",
83
+ "build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
84
+ "build:compile": "concurrently npm:build:commonjs npm:build:esnext",
85
+ "build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
86
+ "build:esnext": "tsc --project ./tsconfig.esnext.json",
87
+ "build:full": "npm run build",
88
+ "build:full:compile": "npm run build:compile",
89
+ "build:test": "tsc --project ./src/test/tsconfig.json",
90
+ "ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
91
+ "clean": "rimraf dist lib *.tsbuildinfo *.build.log",
92
+ "eslint": "eslint --format stylish src",
93
+ "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
94
+ "format": "npm run prettier:fix",
95
+ "lint": "npm run prettier && npm run eslint",
96
+ "lint:fix": "npm run prettier:fix && npm run eslint:fix",
97
+ "prettier": "prettier --check . --ignore-path ../../../.prettierignore",
98
+ "prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
99
+ "test": "npm run test:mocha",
100
+ "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
101
+ "test:mocha": "mocha --recursive dist/test/**/*.spec.js -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
102
+ "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
103
+ "tsc": "tsc",
104
+ "typetests:gen": "flub generate typetests --generate --dir .",
105
+ "typetests:prepare": "flub generate typetests --prepare --dir . --pin"
106
+ }
107
+ }