-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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": "reactorjs",
"version": "3.1.1",
"description": "Simple reactive programming without frameworks",
"type": "module",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"weak-ref-collections": "^1.2.4"
},
"devDependencies": {
"standard": "^17.1.2"
},
"scripts": {
"lint": "standard --fix",
"test": "standard && node --test test/test.js",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fynyky/reactor.js.git"
},
"keywords": [
"reactive",
"reactivity",
"signals",
"observers",
"state-management",
"observable",
"dependency-tracking",
"automatic-updates",
"proxy-based",
"vanilla-js",
"reactive-programming",
"data-binding",
"change-detection",
"computed-values",
"derived-state"
],
"author": "Hongyi Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/fynyky/reactor.js/issues"
},
"homepage": "https://github.com/fynyky/reactor.js#readme"
}