UNPKG

1.4 kBJSONView Raw
1{
2 "name": "patella",
3 "version": "2.2.2",
4 "description": "Patella is a library for reactive programming in JavaScript, inspired by Hyperactiv and Vue.js.",
5 "author": "Lua MacDougall <lua@foxgirl.dev> (https://foxgirl.dev/)",
6 "license": "MIT",
7 "keywords": [
8 "reactive",
9 "react",
10 "computed",
11 "computed properties",
12 "properties",
13 "observable",
14 "model",
15 "mvc",
16 "mvvc",
17 "vue",
18 "vue.js",
19 "hyperactiv"
20 ],
21 "type": "module",
22 "main": "./dist/patella.cjs.js",
23 "module": "./lib/patella.js",
24 "types": "./lib/patella.d.ts",
25 "jsdelivr": "./dist/patella.iife.min.js",
26 "unpkg": "./dist/patella.iife.min.js",
27 "exports": {
28 ".": {
29 "require": "./dist/patella.cjs.js",
30 "default": "./lib/patella.js"
31 }
32 },
33 "scripts": {
34 "test": "c8 --reporter lcov --reporter text-summary mocha --ui tdd ./test/patella.test.js",
35 "build": "rollup --config rollup.config.js",
36 "prepublishOnly": "npm test && npm run build"
37 },
38 "devDependencies": {
39 "c8": "^7.8.0",
40 "chai": "^4.3.4",
41 "mocha": "^9.0.3",
42 "rollup": "^2.56.2",
43 "terser": "^5.7.1",
44 "uglify-js": "^3.14.1"
45 },
46 "repository": {
47 "type": "git",
48 "url": "git+https://github.com/luavixen/Patella.git"
49 },
50 "bugs": {
51 "url": "https://github.com/luavixen/Patella/issues"
52 },
53 "homepage": "https://github.com/luavixen/Patella#readme"
54}