-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "zjax",
"version": "3.1.2",
"type": "module",
"description": "ZJAX is a lightweight yet powerful JavaScript library that brings modern SPA-like interactivity to your web pages with minimal effort.",
"main": "dist/zjax.min.js",
"scripts": {
"dev": "nodemon server.js",
"build": "vite build",
"preview": "vite preview",
"size": "gzip -c dist/zjax.min.js | wc -c | awk '{print \"Gzipped and minified size: \" $1 / 1024 \" KB\"}'",
"semver": "node script/semver.cjs",
"pretest": "node script/pretest.mjs",
"test": "COVERAGE=true playwright test --fully-parallel"
},
"files": [
"dist/zjax.min.js",
"Readme.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"htmx",
"hypermedia",
"ajax"
],
"author": "Codepilot SF",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.1",
"@sindresorhus/slugify": "^3.0.0",
"chalk": "^5.6.2",
"express": "^5.1.0",
"monocart-reporter": "^2.10.0",
"multer": "^1.4.5-lts.2",
"nodemon": "^3.1.10",
"vite": "^6.2.0"
},
"@atakama/cover-diff": {
"lines": 100,
"branches": 100,
"functions": 100,
"lcovFile": "test/result/report/coverage/lcov.info"
},
"dependencies": {
"jsdom": "^29.1.1"
}
}