-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.8 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "wp-google-analytics",
"version": "1.1.2",
"description": "Adds a wp_head action to inject Google analytics code snippets",
"keywords": [
"WordPress",
"Google",
"Analytics",
"php"
],
"homepage": "https://github.com/ideasonpurpose/wp-google-analytics#readme",
"bugs": {
"url": "https://github.com/ideasonpurpose/wp-google-analytics/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ideasonpurpose/wp-google-analytics.git"
},
"license": "MIT",
"author": "Ideas On Purpose (https://www.ideasonpurpose.com)",
"contributors": [
"Joe Maller <[email protected]>"
],
"directories": {
"test": "tests"
},
"scripts": {
"composer": "npm run composer:install",
"composer:install": "docker compose run --rm composer",
"composer:update": "docker compose run --rm composer update",
"test": "docker compose run --rm test",
"test:watch": "docker compose run --rm test watch",
"version": "version-everything && auto-changelog && git add -u"
},
"prettier": {
"overrides": [
{
"files": "*.html",
"options": {
"printWidth": 120,
"tabWidth": 2
}
},
{
"files": "*.md",
"options": {
"embeddedLanguageFormatting": "off"
}
},
{
"files": "*.php",
"options": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"trailingCommaPHP": true
}
}
]
},
"devDependencies": {
"@prettier/plugin-php": "^0.22.4",
"auto-changelog": "^2.5.0",
"prettier": "^3.5.2",
"version-everything": "^0.11.4"
},
"auto-changelog": {
"package": true,
"commitLimit": 7
},
"version-everything": {
"files": [
"README.md"
]
}
}