-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.69 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
{
"name": "@webqit/realdom",
"title": "RealDOM",
"description": "Low-level DOM APIs.",
"keywords": [
"DOM",
"Mutation Observer",
"realtime-dom",
"reactive DOM library"
],
"homepage": "https://webqit.io/tooling/realdom",
"version": "2.1.33",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webqit/realdom.git"
},
"bugs": {
"url": "https://github.com/webqit/realdom/issues"
},
"type": "module",
"sideEffects": false,
"browser": {
"fs": false
},
"main": "./src/index.js",
"scripts": {
"test": "mocha --extension .test.js --exit",
"test:coverage": "c8 --reporter=text-lcov npm run test | coveralls",
"build": "esbuild main=src/targets.browser.js --bundle --minify --sourcemap --outdir=dist",
"preversion": "npm run test && npm run build && git add -A dist",
"postversion": "npm publish",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"@webqit/util": "^0.8.11"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"esbuild": "^0.14.43",
"jsdom": "^20.0.0",
"mocha": "^9.0.2",
"mocha-lcov-reporter": "^1.3.0"
},
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
"maintainers": [
"Oxford Harrison <oxharris.dev@gmail.com>"
],
"contributors": [],
"funding": {
"type": "patreon",
"url": "https://patreon.com/ox_harris"
},
"badges": {
"list": [
"npmversion",
"npmdownloads"
],
"config": {
"patreonUsername": "ox_harris",
"githubUsername": "webqit",
"githubRepository": "realdom",
"githubSlug": "webqit/realdom",
"npmPackageName": "@webqit/realdom"
}
}
}