-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 981 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
{
"name": "backdom",
"version": "0.0.8",
"description": "backdom is a minimal DOM implementation for SSR purposes",
"type": "module",
"module": "index.js",
"main": "index.cjs",
"exports": {
".": {
"import": "./index.js",
"require": "./cjs/index.js"
},
"./register": {
"import": "./register.js",
"require": "./cjs/register.js"
}
},
"scripts": {
"build": "esbuild --format=cjs --out-extension:.js=.cjs --outdir=. index.js register.js",
"test": "uvu",
"release": "npm run build && npm t && git commit -am \"$npm_package_version\" && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"repository": "cristianfalcone/backdom",
"author": "Cristian Falcone",
"license": "ISC",
"bugs": "https://github.com/cristianfalcone/backdom/issues",
"homepage": "https://github.com/cristianfalcone/backdom#readme",
"devDependencies": {
"esbuild": "^0.15.7",
"uvu": "^0.5.6"
}
}