@fluid-experimental/property-changeset 2.0.0-internal.6.2.0 → 2.0.0-internal.6.3.1

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 +10 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-experimental/property-changeset",
3
- "version": "2.0.0-internal.6.2.0",
3
+ "version": "2.0.0-internal.6.3.1",
4
4
  "description": "property changeset definitions and related functionalities",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -18,7 +18,7 @@
18
18
  "lib/**/*",
19
19
  "dist/index.d.ts"
20
20
  ],
21
- "nyc": {
21
+ "c8": {
22
22
  "all": true,
23
23
  "cache-dir": "nyc/.cache",
24
24
  "exclude": [
@@ -39,7 +39,7 @@
39
39
  "temp-directory": "nyc/.nyc_output"
40
40
  },
41
41
  "dependencies": {
42
- "@fluid-experimental/property-common": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0",
42
+ "@fluid-experimental/property-common": ">=2.0.0-internal.6.3.1 <2.0.0-internal.6.4.0",
43
43
  "ajv": "7.1.1",
44
44
  "ajv-keywords": "4.0.0",
45
45
  "async": "^3.2.2",
@@ -50,13 +50,13 @@
50
50
  },
51
51
  "devDependencies": {
52
52
  "@fluidframework/build-common": "^2.0.0",
53
- "@fluidframework/build-tools": "^0.23.0",
54
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0",
53
+ "@fluidframework/build-tools": "^0.22.0",
54
+ "@fluidframework/mocha-test-setup": ">=2.0.0-internal.6.3.1 <2.0.0-internal.6.4.0",
55
55
  "@types/lodash": "^4.14.118",
56
56
  "@types/mocha": "^9.1.1",
57
57
  "@types/node": "^16.18.38",
58
+ "c8": "^7.7.1",
58
59
  "chai": "^4.2.0",
59
- "concurrently": "^7.6.0",
60
60
  "copyfiles": "^2.4.1",
61
61
  "cross-env": "^7.0.3",
62
62
  "eslint": "~8.6.0",
@@ -64,8 +64,7 @@
64
64
  "mocha-json-output-reporter": "^2.0.1",
65
65
  "mocha-multi-reporters": "^1.5.1",
66
66
  "moment": "^2.21.0",
67
- "nock": "^10.0.1",
68
- "nyc": "^15.1.0",
67
+ "nock": "^13.3.3",
69
68
  "prettier": "~2.6.2",
70
69
  "rimraf": "^4.4.0",
71
70
  "sinon": "^7.4.2",
@@ -81,7 +80,7 @@
81
80
  "build:compile": "fluid-build . --task compile",
82
81
  "build:esnext": "tsc --project ./tsconfig.esnext.json",
83
82
  "build:test": "tsc --project ./src/test/tsconfig.json",
84
- "clean": "rimraf --glob \"dist\" \"lib\" \"*.tsbuildinfo\" \"*.build.log\"",
83
+ "clean": "rimraf --glob 'dist' 'lib' '*.tsbuildinfo' '*.build.log' 'nyc'",
85
84
  "coverage": "npx nyc --silent --cwd --nycrc-path `pwd`/.nycrc npm run test",
86
85
  "eslint": "eslint --format stylish src",
87
86
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
@@ -91,9 +90,8 @@
91
90
  "prettier": "prettier --check . --ignore-path ../../../../.prettierignore",
92
91
  "prettier:fix": "prettier --write . --ignore-path ../../../../.prettierignore",
93
92
  "test": "npm run test:mocha",
94
- "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
95
- "test:mocha": "mocha --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
96
- "test:mocha:multireport": "npm run test:mocha",
93
+ "test:coverage": "c8 npm test",
94
+ "test:mocha": "mocha --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup",
97
95
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
98
96
  "tsc": "tsc"
99
97
  }