forked from NiklasPor/prettier-plugin-go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 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
55
56
57
58
59
60
61
{
"name": "prettier-plugin-go-template",
"version": "0.0.10",
"description": "Fixes prettier formatting for go templates.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NiklasPor/prettier-plugin-go-template"
},
"author": {
"name": "Niklas Portmann",
"email": "[email protected]"
},
"keywords": [
"prettier",
"plugin",
"go",
"template",
"html"
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"lint": "tslint --project .",
"test": "jest",
"coverage": "jest --coverage",
"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": "jest --watch",
"release:plugin": "npm run build && npm publish",
"release": "npm run release:coverage && npm run release:plugin"
},
"peerDependencies": {
"prettier": "^2.0.0"
},
"devDependencies": {
"codecov": "^3.8.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"@types/prettier": "^2.1.5",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {}
}