This repository was archived by the owner on Feb 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 KB
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
{
"name": "automation-tests",
"version": "6.0.0",
"description": "A plugin to test automation workflows",
"main": "index.js",
"scripts": {
"changeset:generate": "node scripts/generate-changeset.js",
"changeset:analyze": "node scripts/analyze-changesets.js",
"release:notes": "node scripts/generate-release-notes.js",
"version:bump": "node scripts/bump-version.js",
"changelog:update": "node scripts/update-changelog.js",
"readme:update": "node scripts/update-readme.js",
"changelogs:update": "node scripts/update-changelogs.js",
"build": "node scripts/build.js",
"release:prepare": "npm run version:bump && npm run changelogs:update",
"test": "echo \"Error: no test specified\" && exit 1",
"upgrade-notice:update": "node scripts/update-upgrade-notice.js",
"since-tags:update": "node scripts/update-since-tags.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonbahl/automation-tests.git"
},
"keywords": [
"wordpress",
"plugin",
"automation",
"github",
"workflows"
],
"author": "Jason Bahl",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/jasonbahl/automation-tests/issues"
},
"homepage": "https://github.com/jasonbahl/automation-tests#readme",
"devDependencies": {
"archiver": "^5.3.1",
"chalk": "^4.1.2",
"dotenv": "^16.4.7",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"yargs": "^17.7.2"
}
}