-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.8 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"alias": "react observable context",
"author": "Stephen Isienyi <stephen.isienyi@webkrafting.com>",
"bugs": {
"url": "https://github.com/webKrafters/react-observable-context.js/issues"
},
"contributors": [
"steveswork <stephen.isienyi@gmail.com> (https://github.com/steveswork)"
],
"description": "Observable react context - Update-friendly context. Prevents automatic total component tree tear-down and re-rendering during context updates.",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.20.5",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.12",
"@types/jest-cli": "^24.3.0",
"@types/lodash.isempty": "^4.4.9",
"@types/lodash.isplainobject": "^4.0.9",
"@types/node": "^20.11.28",
"@webkrafters/clone-total": "^1.0.1",
"@webkrafters/get-property": "^2.0.0",
"@webkrafters/path-dotize": "0.0.2",
"@webkrafters/timed-map": "^2.0.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash.clonedeep": "^4.5.0",
"lodash.clonedeepwith": "^4.5.0",
"lodash.isboolean": "^3.0.3",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isinteger": "^4.0.4",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^4.0.6",
"lodash.omit": "^4.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-performance-testing": "^2.0.0",
"setimmediate": "^1.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"files": [
"logo.png",
"dist"
],
"homepage": "https://react-observable-context.js.org",
"keywords": [
"connect",
"context",
"eagle eye",
"hoc",
"hooks",
"observable",
"observable context",
"react",
"react context",
"react hooks",
"react observable conttext",
"react state",
"state",
"state management",
"state manager",
"useContext"
],
"license": "GPL-3.0-only",
"main": "dist/index.js",
"name": "@webkrafters/react-observable-context",
"peerDependencies": {
"@types/react": ">= 16.8.0 <19",
"@webkrafters/clone-total": ">= 1.0.1",
"@webkrafters/get-property": ">= 1.0.1",
"@webkrafters/path-dotize": ">= 0.0.2",
"@webkrafters/timed-map": "^2.0.0",
"lodash.clonedeep": ">= 0.1.0",
"lodash.clonedeepwith": ">= 0.1.0",
"lodash.isboolean": ">= 0.1.0",
"lodash.isempty": ">= 0.1.0",
"lodash.isinteger": ">= 0.1.0",
"lodash.isobject": ">= 0.1.0",
"lodash.isequal": ">= 0.1.0",
"lodash.isplainobject": ">= 0.8.0",
"lodash.omit": ">= 0.1.0",
"react": ">= 16.8.0 <19"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webKrafters/react-observable-context.js.git"
},
"scripts": {
"build": "eslint --fix && rm -rf dist && tsc && babel dist -d dist",
"test": "eslint --fix && jest --coverage --updateSnapshot",
"test:clean": "jest --clearCache",
"test:core": "jest --updateSnapshot",
"test:watch": "eslint --fix && jest --updateSnapshot --watchAll"
},
"types": "dist/index.d.ts",
"version": "7.0.4",
"dependencies": {
"@webkrafters/eagleeye": "^1.0.5"
}
}