@visactor/vchart-schema 0.0.1-alpha.0 → 0.0.1-beta.2

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/package.json +28 -3
  2. package/vchart.json +417 -306
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "0.0.1-alpha.0",
3
+ "version": "0.0.1-beta.2",
4
4
  "description": "The VChart JSON schema file.",
5
5
  "sideEffects": false,
6
6
  "main": "vchart.json",
@@ -9,13 +9,38 @@
9
9
  ],
10
10
  "dependencies": {},
11
11
  "devDependencies": {
12
+ "@rushstack/eslint-patch": "~1.1.4",
12
13
  "ts-json-schema-generator": "^1.2.0",
13
14
  "ajv": "^8.12.0",
14
15
  "ajv-keywords": "^5.1.0",
15
- "semver": "7.3.4"
16
+ "semver": "7.3.4",
17
+ "@types/jest": "^26.0.0",
18
+ "jest": "^26.0.0",
19
+ "jest-electron": "^0.1.12",
20
+ "ts-jest": "^26.0.0",
21
+ "@types/semver": "7.3.12",
22
+ "@internal/eslint-config": "0.0.1",
23
+ "@internal/ts-config": "0.0.1"
16
24
  },
25
+ "homepage": "",
26
+ "bugs": "https://github.com/VisActor/VChart/issues",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "GitHub - VisActor/VChart: The chart library for web and multi-platform",
30
+ "directory": "packages/vchart-schema"
31
+ },
32
+ "author": {
33
+ "name": "VisActor",
34
+ "url": "https://www.visactor.io/"
35
+ },
36
+ "license": "MIT",
17
37
  "publishConfig": {
18
38
  "access": "public",
19
39
  "registry": "https://registry.npmjs.org/"
40
+ },
41
+ "scripts": {
42
+ "test": "jest",
43
+ "test-live": "npm run test-watch __tests__",
44
+ "test-watch": "DEBUG_MODE=1 jest --watch"
20
45
  }
21
- }
46
+ }