-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
55 lines (55 loc) · 981 Bytes
/
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
55
{
"name": "on-change",
"version": "5.0.1",
"description": "Watch an object or array for changes",
"license": "MIT",
"repository": "sindresorhus/on-change",
"funding": "https://github.com/sindresorhus/on-change?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava && tsd",
"bench": "node bench/index.bench.js"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"keywords": [
"on",
"change",
"watch",
"object",
"array",
"changes",
"observe",
"watcher",
"observer",
"proxy",
"proxies",
"es2015",
"event",
"listener"
],
"devDependencies": {
"ava": "^6.0.1",
"display-value": "^2.2.0",
"powerset": "0.0.1",
"tinybench": "^2.8.0",
"tsd": "^0.29.0",
"xo": "^0.56.0"
}
}