UNPKG

patella

Version:

Patella is a library for reactive programming in JavaScript, inspired by Hyperactiv and Vue.js.

55 lines (54 loc) 1.4 kB
{ "name": "patella", "version": "2.2.2", "description": "Patella is a library for reactive programming in JavaScript, inspired by Hyperactiv and Vue.js.", "author": "Lua MacDougall <lua@foxgirl.dev> (https://foxgirl.dev/)", "license": "MIT", "keywords": [ "reactive", "react", "computed", "computed properties", "properties", "observable", "model", "mvc", "mvvc", "vue", "vue.js", "hyperactiv" ], "type": "module", "main": "./dist/patella.cjs.js", "module": "./lib/patella.js", "types": "./lib/patella.d.ts", "jsdelivr": "./dist/patella.iife.min.js", "unpkg": "./dist/patella.iife.min.js", "exports": { ".": { "require": "./dist/patella.cjs.js", "default": "./lib/patella.js" } }, "scripts": { "test": "c8 --reporter lcov --reporter text-summary mocha --ui tdd ./test/patella.test.js", "build": "rollup --config rollup.config.js", "prepublishOnly": "npm test && npm run build" }, "devDependencies": { "c8": "^7.8.0", "chai": "^4.3.4", "mocha": "^9.0.3", "rollup": "^2.56.2", "terser": "^5.7.1", "uglify-js": "^3.14.1" }, "repository": { "type": "git", "url": "git+https://github.com/luavixen/Patella.git" }, "bugs": { "url": "https://github.com/luavixen/Patella/issues" }, "homepage": "https://github.com/luavixen/Patella#readme" }