-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 KB
/
package.json
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
{
"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"
}