-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.3 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": "@webqit/observer",
"title": "Observer",
"description": "A simple set of functions for intercepting and observing JavaScript objects and arrays.",
"keywords": [
"observer",
"reflection",
"interception",
"pub/sub pattern",
"object.observe",
"array.observe",
"events"
],
"version": "3.8.22",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webqit/observer.git"
},
"bugs": {
"url": "https://github.com/webqit/observer/issues"
},
"type": "module",
"sideEffects": false,
"main": "src/index.js",
"scripts": {
"test": "mocha --extension .test.js --recursive --timeout 5000 --exit",
"build": "esbuild main=src/index.browser.js --bundle --minify --sourcemap --outdir=dist",
"preversion": "npm run test && npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"version:next": "npm version prerelease --preid=next"
},
"dependencies": {
"@webqit/util": "^0.8.19"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"esbuild": "^0.17.9",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0"
},
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
"maintainers": [
"Oxford Harrison <oxharris.dev@gmail.com>"
],
"contributors": []
}