-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "html-fragment",
"version": "1.1.2",
"description": "Convert a string of HTML into a DocumentFragment that preserves tags requiring a specific parent tag.",
"main": "lib/html-fragment.min.js",
"scripts": {
"test": "jest",
"prepublishOnly": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinokerlund/html-fragment.git"
},
"author": "Kevin Okerlund",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinokerlund/html-fragment/issues"
},
"homepage": "https://github.com/kevinokerlund/html-fragment#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.0.4",
"jest": "^27.4.7",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {},
"keywords": [
"javascript",
"document-fragment",
"DocumentFragment",
"HTML",
"DOM",
"clientside",
"client-side",
"string"
]
}