-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "@showlotus/prettier-plugin-kebab-to-camel",
"version": "0.0.4",
"description": "A prettier plugin to convet attribute style from kebab-case to camelCase in typescript and javascript files by the provided attributes list.",
"main": "lib/src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"test": "vitest",
"build": "tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prettier": "npx prettier tests/js/input.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/showlotus/prettier-plugin-kebab-to-camel.git"
},
"keywords": [
"prettier",
"prettier-plugin",
"formatter",
"typescript",
"javascript"
],
"author": {
"name": "showlotus",
"email": "showlotus2000@gmail.com",
"url": "https://github.com/showlotus"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/showlotus/prettier-plugin-kebab-to-camel/issues"
},
"homepage": "https://github.com/showlotus/prettier-plugin-kebab-to-camel#readme",
"devDependencies": {
"@types/babel__generator": "^7.6.7",
"@types/babel__traverse": "^7.20.4",
"@types/node": "^20.10.0",
"conventional-changelog-cli": "^4.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@babel/generator": "^7.23.5",
"@babel/parser": "^7.23.5",
"@babel/traverse": "^7.23.5"
},
"peerDependencies": {
"prettier": "^3.1.0"
}
}