-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 911 Bytes
/
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
{
"name": "posthtml-insert-at",
"version": "0.2.7",
"license": "MIT",
"description": "PostHTML plugin to append or prepend HTML to a selector",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "vitest",
"prepack": "tsc"
},
"dependencies": {
"posthtml": "^0.16.6",
"posthtml-match-helper": "^1.0.3",
"posthtml-parser": "^0.11.0"
},
"devDependencies": {
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/posthtml/posthtml-insert-at.git"
},
"homepage": "https://github.com/posthtml/posthtml-insert-at",
"bugs": "https://github.com/posthtml/posthtml-insert-at/issues",
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"insert",
"prepend",
"append"
],
"files": [
"lib"
]
}