two-way-data-binding
Version:
Minimal two way data binding in vanilla JS
51 lines (50 loc) • 1.14 kB
JSON
{
"name": "two-way-data-binding",
"version": "2.4.0",
"description": "Minimal two way data binding in vanilla JS",
"license": "MIT",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Roger Cornet",
"email": "cornet.roger@gmail.com"
},
{
"name": "Ricard Torres",
"email": "ricard@ricard.dev"
}
],
"repository": {
"type": "git",
"url": "https://github.com/quicoto/two-way-data-binding"
},
"main": "src/index.js",
"scripts": {
"develop": "esbuild --bundle develop/index.js --outfile=develop/index.min.js --servedir=develop",
"lint": "eslint .",
"test": "vitest run",
"watch:test": "vitest",
"prepare": "husky"
},
"keywords": [
"js",
"data-binding",
"vanillaJS",
"model"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@vitest/eslint-plugin": "^1.6.20",
"esbuild": "^0.28.1",
"jsdom": "^29.1.1",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"vitest": "^4.1.9"
}
}