-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 867 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 867 Bytes
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
{
"name": "wp-tables-schema",
"description": "A developer-friendly library for creating and managing custom WordPress database tables with schema definition, versioning, and migrations.",
"license": "MIT",
"keywords": [
"wordpress",
"database",
"custom-tables",
"schema-builder",
"wpdb",
"migrations"
],
"version": "1.0.1",
"author": "WPTechnix <developers@wptechnix.com>",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "^10.0.1",
"husky": "^9.1.7",
"release-it": "^19.0.4"
},
"directories": {
"test": "tests"
},
"scripts": {
"prepare": "husky",
"release": "release-it"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}