-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
82 lines (82 loc) · 2.4 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
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
{
"name": "@gullerya/object-observer",
"version": "6.1.3",
"description": "object-observer utility provides simple means to (deeply) observe specified object/array changes; implemented via native Proxy; changes delivered in a synchronous way",
"keywords": [
"object",
"array",
"observe",
"observer",
"object observe",
"object.observe",
"observable",
"changes",
"deep",
"tree",
"graph",
"javascript",
"proxy",
"C",
"J",
"G",
"Y"
],
"author": {
"name": "Yuri Guller",
"email": "[email protected]"
},
"homepage": "https://github.com/gullerya/object-observer",
"repository": {
"type": "git",
"url": "https://github.com/gullerya/object-observer"
},
"bugs": {
"url": "https://github.com/gullerya/object-observer/issues",
"email": "[email protected]"
},
"license": "ISC",
"funding": [
{
"url": "https://paypal.me/gullerya?locale.x=en_US"
},
{
"url": "https://tidelift.com/funding/github/npm/object-observer"
}
],
"type": "module",
"main": "./dist/object-observer.min.js",
"module": "./dist/object-observer.min.js",
"browser": "./dist/object-observer.min.js",
"types": "./dist/object-observer.d.ts",
"exports": {
".": {
"types": "./dist/object-observer.d.ts",
"import": "./dist/object-observer.min.js",
"require": "./dist/cjs/object-observer.min.cjs"
}
},
"files": [
"dist",
"sri.json"
],
"scripts": {
"build": "node ./ci/tools/build-utils.js",
"lint": "eslint -c ./ci/.eslintrc.json ./src/*.js ./tests/*.js ./ci/**/*.js",
"test": "node node_modules/@gullerya/just-test/bin/local-runner.js config_file=./tests/configs/tests-config-ci-node.json",
"test:chromium": "node node_modules/@gullerya/just-test/bin/local-runner.js config_file=./tests/configs/tests-config-ci-chromium.json",
"test:firefox": "node node_modules/@gullerya/just-test/bin/local-runner.js config_file=./tests/configs/tests-config-ci-firefox.json",
"test:webkit": "node node_modules/@gullerya/just-test/bin/local-runner.js config_file=./tests/configs/tests-config-ci-webkit.json",
"test:nodejs": "node node_modules/@gullerya/just-test/bin/local-runner.js config_file=./tests/configs/tests-config-ci-node.json",
"version": "npm run build && git add --all",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@gullerya/just-test": "^4.0.6",
"chai": "4.3.6",
"eslint": "^8.54.0",
"esbuild": "^0.19.5"
},
"publishConfig": {
"access": "public"
}
}