63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "prettier-plugin-go-template",
|
|
"version": "0.0.15",
|
|
"description": "Prettier plugin for formatting Go & GoHugo templates.",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NiklasPor/prettier-plugin-go-template"
|
|
},
|
|
"author": {
|
|
"name": "Niklas Portmann",
|
|
"email": "niklaspor@gmail.com"
|
|
},
|
|
"keywords": [
|
|
"prettier",
|
|
"plugin",
|
|
"go",
|
|
"hugo",
|
|
"gohugo",
|
|
"template",
|
|
"html"
|
|
],
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/index",
|
|
"types": "lib/index",
|
|
"scripts": {
|
|
"lint": "tslint --project .",
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --no-cache",
|
|
"publish:coverage": "codecov -t $npm_config_prettier_plugin_go_html_codecov",
|
|
"release:coverage": "npm run coverage && npm run publish:coverage",
|
|
"build": "tsc --pretty",
|
|
"watch": "npm run build -- --watch",
|
|
"watch:test": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
|
|
"release:plugin": "npm run build && npm run release:coverage && npm publish",
|
|
"release:plugin:local": "npm run build && npm run release:coverage && npm publish --registry=http://localhost:4873/"
|
|
},
|
|
"peerDependencies": {
|
|
"prettier": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.15",
|
|
"@types/node": "^14.14.2",
|
|
"codecov": "^3.8.0",
|
|
"jest": "^29.1.1",
|
|
"prettier": "^3.0.0",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^9.0.0",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^4.0.0",
|
|
"tslib": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"dependencies": {
|
|
"ulid": "^2.3.0"
|
|
}
|
|
}
|