jedison 0.1.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.
- package/CHANGELOG.md +0 -0
- package/LICENSE +21 -0
- package/README.md +1911 -0
- package/dist/cjs/jedison.cjs +2 -0
- package/dist/cjs/jedison.cjs.map +1 -0
- package/dist/esm/jedison.js +7567 -0
- package/dist/esm/jedison.js.map +1 -0
- package/dist/umd/jedison.umd.js +2 -0
- package/dist/umd/jedison.umd.js.map +1 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jedison",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "JavaScript Library for JSON Validation and Editing",
|
|
5
|
+
"main": "./dist/cjs/jedison.cjs",
|
|
6
|
+
"module": "./dist/esm/jedison.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE",
|
|
12
|
+
"CHANGELOG.md"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/esm/jedison.js",
|
|
17
|
+
"require": "./dist/cjs/jedison.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./browser": {
|
|
20
|
+
"import": "./dist/umd/jedison.umd.js",
|
|
21
|
+
"require": "./dist/umd/jedison.umd.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "vite --config ./vite.config.dev.js",
|
|
26
|
+
"preserve": "vite build --config ./vite.config.dev.js",
|
|
27
|
+
"serve": "vite preview --config ./vite.config.dev.js",
|
|
28
|
+
"build": "vite build --config ./vite.config.prod.js",
|
|
29
|
+
"prebuild": "vite build --config ./vite.config.pages.js",
|
|
30
|
+
"unit": "yarn build && jest --config=./tests/unit/jest.config.cjs",
|
|
31
|
+
"e2e": "codeceptjs run-workers 10 -c tests/e2e/codecept.conf.cjs",
|
|
32
|
+
"e2e:b3": "THEME='bootstrap3' npm run e2e",
|
|
33
|
+
"e2e:b4": "THEME='bootstrap4' npm run e2e",
|
|
34
|
+
"e2e:b5": "THEME='bootstrap5' npm run e2e",
|
|
35
|
+
"e2e:*": "npm run e2e && npm run e2e:b3 && npm run e2e:b4 && npm run e2e:b5",
|
|
36
|
+
"e2e:grep": "SHOW=true THEME='bootstrap3' codeceptjs run -c tests/e2e/codecept.conf.cjs --steps --debug --grep '@string-emoji-button'",
|
|
37
|
+
"lint": "eslint -c ./.eslintrc.json ./src ./tests",
|
|
38
|
+
"lint:fix": "eslint --fix -c ./.eslintrc.json ./src ./tests",
|
|
39
|
+
"test:full": "yarn serve & yarn e2e && yarn unit",
|
|
40
|
+
"postversion": "git push && git push --tags",
|
|
41
|
+
"release": "npm publish --access public"
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/germanbisurgi/jedison.git"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"json",
|
|
49
|
+
"validation",
|
|
50
|
+
"editor",
|
|
51
|
+
"schema",
|
|
52
|
+
"json-schema"
|
|
53
|
+
],
|
|
54
|
+
"author": "German Bisurgi <gebisurgi@protonmail.com>",
|
|
55
|
+
"license": "MIT",
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/germanbisurgi/jedison/issues"
|
|
58
|
+
},
|
|
59
|
+
"homepage": "https://github.com/germanbisurgi/jedison#readme",
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@vitejs/plugin-vue": "^5.2.0",
|
|
62
|
+
"bootstrap": "^5.3.0",
|
|
63
|
+
"codeceptjs": "^3.7.2",
|
|
64
|
+
"codeceptjs-chai": "^2.3.5",
|
|
65
|
+
"eslint": "^8.57.0",
|
|
66
|
+
"eslint-config-standard": "^14.1.0",
|
|
67
|
+
"eslint-plugin-import": "^2.20.0",
|
|
68
|
+
"eslint-plugin-node": "^11.1.0",
|
|
69
|
+
"eslint-plugin-promise": "^4.2.1",
|
|
70
|
+
"eslint-plugin-standard": "^4.0.1",
|
|
71
|
+
"jest": "^29.4.1",
|
|
72
|
+
"json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite.git",
|
|
73
|
+
"puppeteer": "^13.5.2",
|
|
74
|
+
"sass": "^1.77.8",
|
|
75
|
+
"vite": "^6.3.5",
|
|
76
|
+
"vue": "^3.5.12"
|
|
77
|
+
},
|
|
78
|
+
"resolutions": {
|
|
79
|
+
"ws": "^8.18.1",
|
|
80
|
+
"braces": "^3.0.3",
|
|
81
|
+
"axios": "^1.8.4",
|
|
82
|
+
"cross-spawn": "^7.0.5",
|
|
83
|
+
"tar-fs": ">=2.1.2"
|
|
84
|
+
}
|
|
85
|
+
}
|