@takeshape/schema 8.254.0 → 8.255.8

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 +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takeshape/schema",
3
- "version": "8.254.0",
3
+ "version": "8.255.8",
4
4
  "description": "TakeShape Schema",
5
5
  "homepage": "https://www.takeshape.io",
6
6
  "repository": {
@@ -21,9 +21,6 @@
21
21
  "examples"
22
22
  ],
23
23
  "dependencies": {
24
- "@takeshape/errors": "8.254.0",
25
- "@takeshape/json-schema": "8.254.0",
26
- "@takeshape/util": "8.254.0",
27
24
  "ajv": "^8.10.0",
28
25
  "ajv-formats": "^2.1.1",
29
26
  "blueimp-md5": "^2.10.0",
@@ -31,13 +28,17 @@
31
28
  "lodash": "^4.17.20",
32
29
  "minimatch": "^3.0.4",
33
30
  "p-reduce": "^2.1.0",
34
- "semver": "^7.3.2"
31
+ "semver": "^7.3.2",
32
+ "@takeshape/errors": "8.255.8",
33
+ "@takeshape/json-schema": "8.255.8",
34
+ "@takeshape/util": "8.255.8"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@takeshape/json-schema-to-typescript": "^11.0.0",
38
38
  "@types/blueimp-md5": "^2.7.0",
39
39
  "@types/glob": "^7.1.3",
40
40
  "@types/lodash": "^4.14.165",
41
+ "@types/minimatch": "^3.0.3",
41
42
  "@types/semver": "^7.1.0",
42
43
  "@types/shortid": "^0.0.29",
43
44
  "fs-extra": "^8.1.0",
@@ -53,7 +54,7 @@
53
54
  "test": "jest",
54
55
  "test:ci": "JEST_JUNIT_OUTPUT_DIR=\"${HOME}/test-results/${npm_package_name#*\\/}\" JEST_JUNIT_OUTPUT_NAME=jest-results.xml jest --ci --reporters=default --reporters=jest-junit",
55
56
  "test:migrate-examples": "jest src/__tests__/_examples.test.ts --updateSnapshot",
56
- "test-changed": "pnpm run test -- --changedSince=master",
57
+ "test-changed": "pnpm run test --changedSince=master",
57
58
  "typecheck": "tsc --noEmit",
58
59
  "json2ts": "node scripts/json-schema-to-typescript.mjs",
59
60
  "clean": "rimraf build dist es *.tsbuildinfo",
@@ -63,9 +64,8 @@
63
64
  "build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",
64
65
  "build:json": "cp -r src/schemas es && cp -r src/schemas dist",
65
66
  "build:copy": "cp -rf build/src/* dist/",
66
- "will-it-blend": "pnpm typecheck && pnpm lint -- --quiet && pnpm test -- --silent --coverage false",
67
+ "will-it-blend": "pnpm typecheck && pnpm lint --quiet && pnpm test --silent --coverage false",
67
68
  "publish-json-schema": "node ./scripts/publish-json-schema.mjs",
68
69
  "todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'"
69
- },
70
- "readme": "# Schema\n\n## Summary\n\nThe heart of TakeShape, schema defines the meta-schema for project schemas and utilities for manipulating them.\n"
70
+ }
71
71
  }