-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "wp-graphql-content-stats",
"version": "1.0.1",
"description": "Add some stats to WPGraphQL: total posts, word count and estimated reading time.",
"license": "GPL-2.0-or-later",
"author": {
"name": "Armand Philippot",
"email": "contact@armandphilippot.com",
"url": "https://www.armandphilippot.com"
},
"homepage": "https://github.com/ArmandPhilippot/wp-graphql-content-stats#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ArmandPhilippot/wp-graphql-content-stats.git"
},
"bugs": {
"url": "https://github.com/ArmandPhilippot/wp-graphql-content-stats/issues"
},
"keywords": [
"WordPress",
"plugin"
],
"private": true,
"scripts": {
"bump": "npm-run-all --parallel bump:*",
"bump:comment": "replace-in-file --configFile=tools/bump-php-comment.js",
"bump:constant": "replace-in-file --configFile=tools/bump-php-constant.js",
"bump:readme": "replace-in-file --configFile=tools/bump-readme.js",
"release": "standard-version -a -s",
"translate": "node ./tools/translate.js"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@wordpress/prettier-config": "^1.1.1",
"dotenv": "^14.2.0",
"dotenv-expand": "^6.0.1",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"prettier": "npm:wp-prettier@^2.2.1-beta-1",
"replace-in-file": "^6.3.2",
"standard-version": "^9.3.2",
"wp-pot": "^1.9.9"
},
"standard-version": {
"scripts": {
"postbump": "npm run bump && git add -A"
}
}
}