-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 KB
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
67
68
69
70
{
"name": "zumly",
"version": "0.18.1",
"description": "Javascript library for building zooming user interfaces",
"type": "module",
"author": "Juan Martin Muda - Zumerlab",
"license": "MIT",
"homepage": "https://zumerlab.github.io/zumly-docs",
"repository": {
"type": "git",
"url": "https://github.com/zumerlab/zumly.git"
},
"bugs": {
"url": "https://github.com/zumerlab/zumly/issues"
},
"keywords": [
"zumly",
"zooming",
"javascript",
"UI",
"library",
"ZUI"
],
"main": "dist/zumly.js",
"module": "dist/zumly.mjs",
"exports": {
".": {
"import": "./dist/zumly.mjs",
"require": "./dist/zumly.js",
"default": "./dist/zumly.mjs"
},
"./style.css": "./dist/zumly.css",
"./css": "./dist/zumly.css",
"./drivers": {
"import": "./src/drivers/index.js"
},
"./driver-helpers": {
"import": "./src/drivers/driver-helpers.js"
}
},
"sideEffects": [
"dist/zumly.css",
"dist/zumly.min.css"
],
"scripts": {
"compile": "node esbuild.config.mjs",
"build": "npm run compile && npm pack",
"dev": "npm run compile && npx serve public -p 9090",
"test": "npx vitest run --browser.headless --reporter=verbose",
"test:unit": "npx vitest run __tests__/utils.test.js --reporter=verbose",
"test:coverage": "npx vitest run --browser.headless --coverage",
"test:install-browsers": "npx playwright install chromium",
"bump": "npx @zumerbox/bump && npx @zumerbox/changelog",
"prebuild": "git add CHANGELOG.md && git commit -m \"Bumped version\" && git push --follow-tags"
},
"files": [
"dist",
"src/drivers/driver-helpers.js",
"src/drivers/index.js",
"docs/DRIVER_API.md",
"README.md"
],
"devDependencies": {
"esbuild": "^0.24.0",
"@vitest/browser": "^3.1.2",
"@vitest/coverage-v8": "^3.1.2",
"playwright": "^1.52.0",
"vitest": "^3.1.2"
}
}