-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "esbuild-plugin-html-modules",
"version": "0.8.0",
"description": "An esbuild plugin to load HTML modules",
"main": "index.js",
"scripts": {
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags",
"test:fixture": "rm -f test/fixture/out.* && node test/fixture/esbuild.config.js",
"test": "npm run test:fixture && node --test test/*.mjs"
},
"repository": "[email protected]:whitefusionhq/esbuild-plugin-html-modules.git",
"author": "Jared White <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/whitefusionhq/esbuild-plugin-html-modules/issues"
},
"homepage": "https://github.com/whitefusionhq/esbuild-plugin-html-modules#readme",
"devDependencies": {
"esbuild": "^0.20.1",
"jsdom": "^20.0.0",
"postcss": "^8.4.16",
"postcss-load-config": "^4.0.1",
"postcss-preset-env": "^7.8.0"
},
"dependencies": {
"node-html-parser": "^5.4.2"
},
"prettier": {
"semi": false,
"singleQuote": false,
"printWidth": 100
}
}