mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
{
|
|
"name": "prettier-plugin-organize-attributes",
|
|
"version": "1.0.0",
|
|
"description": "Organize your HTML attributes autmatically with Prettier 🧼",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NiklasPor/prettier-plugin-organize-attributes"
|
|
},
|
|
"author": {
|
|
"name": "Niklas Portmann",
|
|
"email": "niklaspor@gmail.com"
|
|
},
|
|
"type": "commonjs",
|
|
"keywords": [
|
|
"prettier",
|
|
"plugin",
|
|
"organize",
|
|
"attributes",
|
|
"html",
|
|
"angular",
|
|
"vue"
|
|
],
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/index",
|
|
"types": "lib/index",
|
|
"scripts": {
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"build": "tsc --pretty",
|
|
"watch": "npm run build -- --watch",
|
|
"watch:test": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
|
|
"release:plugin": "npm run test && npm run build && npm publish",
|
|
"release:plugin:local": "npm run test && npm run build && npm publish --registry=http://localhost:4873/"
|
|
},
|
|
"peerDependencies": {
|
|
"prettier": "^3.0.0"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/jest": "29.1.1",
|
|
"@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",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
}
|
|
|