-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "jedi",
"version": "0.1.0",
"description": "JavaScript Library for JSON Validation and Editing",
"main": "./dist/cjs/jedi.cjs",
"module": "./dist/esm/jedi.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/jedi.js",
"require": "./dist/cjs/jedi.cjs"
}
},
"scripts": {
"dev": "vite --config ./vite.config.dev.js",
"serve": "vite preview --config ./vite.config.dev.js",
"build": "vite build --config ./vite.config.prod.js",
"prebuild": "vite build --config ./vite.config.pages.js",
"preserve": "vite build --config ./vite.config.dev.js",
"unit": "jest --config=./tests/unit/jest.config.cjs",
"e2e": "codeceptjs run-workers 10 -c tests/e2e/codecept.conf.cjs",
"e2e:b3": "THEME='bootstrap3' npm run e2e",
"e2e:b4": "THEME='bootstrap4' npm run e2e",
"e2e:b5": "THEME='bootstrap5' npm run e2e",
"e2e:*": "npm run e2e && npm run e2e:b3 && npm run e2e:b4 && npm run e2e:b5",
"e2e:grep": "SHOW=true THEME='bootstrap5' codeceptjs run -c tests/e2e/codecept.conf.cjs --steps --debug --grep '@propertyOrder'",
"lint": "eslint -c ./.eslintrc.json ./src",
"lint:fix": "eslint --fix -c ./.eslintrc.json ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/germanbisurgi/jedi.git"
},
"keywords": [],
"author": "German Bisurgi <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/germanbisurgi/jedi/issues"
},
"homepage": "https://github.com/germanbisurgi/jedi#readme",
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.0",
"bootstrap": "^5.3.0",
"codeceptjs": "^3.3.0",
"codeceptjs-chai": "^2.3.5",
"eslint": "^8.57.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.4.1",
"json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite.git",
"puppeteer": "^13.5.2",
"sass": "^1.77.8",
"vite": "^5.4.11",
"vue": "^3.5.12"
},
"resolutions": {
"ws": "^8.17.1",
"braces": "^3.0.3"
}
}