-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.33 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": "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"
}
}