-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "@space48/mutation-ready",
"version": "1.0.1",
"description": "A lightweight utility for detecting and handling DOM mutations",
"main": "dist/mutation-ready.js",
"types": "dist/mutation-ready.d.ts",
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"keywords": [
"mutation-observer",
"dom",
"ready",
"typescript",
"dom-mutations",
"element-ready",
"mutation-events",
"dom-observer"
],
"author": "Space48",
"licence": "MIT",
"devDependencies": {
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"ts-jest": "^29.0.0"
},
"files": [
"dist",
"LICENCE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Space48/mutation-ready.git"
},
"bugs": {
"url": "https://github.com/Space48/mutation-ready/issues"
},
"homepage": "https://github.com/Space48/mutation-ready#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"scope": "@space48"
}
}