-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "ns-featured-posts",
"version": "3.0.0",
"description": "NS Featured Posts",
"author": "Nilambar Sharma",
"license": "GPL-2.0-or-later",
"main_file": "ns-featured-posts.php",
"keywords": [
"wordpress",
"wordpress-plugin"
],
"homepage": "https://github.com/ernilambar/ns-featured-posts",
"repository": {
"type": "git",
"url": "https://github.com/ernilambar/ns-featured-posts"
},
"bugs": {
"url": "https://github.com/ernilambar/ns-featured-posts/issues"
},
"browserslist": "> 1%, not dead",
"packtor": {
"files": [
"**/*",
"!*.js",
"!*.json",
"!*.lock",
"!*.md",
"!*.yaml"
]
},
"wpDeployer": {
"repoType": "plugin",
"username": "rabmalin",
"buildDir": "deploy/ns-featured-posts",
"deployAssets": false
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config"
},
"devDependencies": {
"@wordpress/npm-package-json-lint-config": "^5.4.0",
"@wordpress/prettier-config": "^4.4.0",
"easy-replace-in-files": "^1.0.3",
"npm-package-json-lint": "^8.0.0",
"packtor": "^1.0.2",
"prettier": "npm:wp-prettier@^3.0.3",
"rimraf": "^6.0.1",
"wp-deployer": "^1.0.3"
},
"scripts": {
"version": "easy-replace-in-files",
"format": "prettier \"**/*.{cjs,css,js,json}\" --write",
"pot": "composer run-script pot",
"lint-pkg-json": "npmPkgJsonLint .",
"prewpdeploy": "pnpm run deploy",
"wpdeploy": "wp-deployer",
"predeploy": "rimraf deploy vendor && composer install --no-dev --no-scripts -o",
"deploy": "packtor"
}
}