-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
77 lines (77 loc) · 2.08 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "html-template-tag",
"version": "4.1.1",
"description": "ES6 Tagged Template for compiling HTML template strings.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
}
}
},
"files": [
"dist/index.cjs.js",
"dist/index.esm.js",
"dist/index.d.ts",
"dist/index.d.mts"
],
"scripts": {
"prepare": "husky install",
"type:check": "tsc src/*.ts --noEmit",
"format": "prettier --write --ignore-unknown {src,test}/*",
"format:check": "prettier --check {src,test}/*",
"test": "vitest run --coverage",
"pre-commit": "lint-staged",
"prebuild": "rimraf dist && mkdir dist",
"build": "npm run build:types && npm run build:lib",
"build:types": "tsc src/*.ts --declaration --emitDeclarationOnly --outDir dist && cp dist/index.d.ts dist/index.d.mts",
"build:lib": "rollup -c",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntonioVdlC/html-template-tag.git"
},
"keywords": [
"html",
"template",
"tag",
"es6",
"string",
"literals"
],
"author": "Antonio Villagra De La Cruz",
"license": "MIT",
"bugs": {
"url": "https://github.com/AntonioVdlC/html-template-tag/issues"
},
"homepage": "https://github.com/AntonioVdlC/html-template-tag#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"c8": "^7.11.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.41.4",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"vite": "^2.9.1",
"vitest": "^0.9.3"
},
"dependencies": {
"html-element-attributes": "^3.4.0",
"html-es6cape": "^2.0.0"
}
}