forked from alexlafroscia/vite-plugin-handlebars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "vite-plugin-handlebars",
"version": "1.6.0",
"description": "Vite plugin for Handlebars support in HTML",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"files": [
"dist"
],
"repository": "[email protected]:alexlafroscia/vite-plugin-handlebars.git",
"author": "Alex LaFroscia <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "microbundle -f es,cjs --target node --no-compress",
"lint": "eslint .",
"test": "jest",
"release": "standard-version",
"prepare": "husky install",
"prepublishOnly": "yarn build"
},
"dependencies": {
"handlebars": "^4.7.6",
"vite": "^2.0.0"
},
"devDependencies": {
"@movable/eslint-config": "^0.6.9",
"@movable/eslint-config-typescript": "^1.0.0",
"@movable/prettier-config": "^0.3.6",
"@tsconfig/node14": "^1.0.0",
"@types/jest": "^27.0.1",
"file-fixture-factory": "^1.0.1",
"husky": "^7.0.2",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"microbundle": "^0.14.0",
"standard-version": "^9.1.0",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,md,yml}": "prettier --write"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
}
}