-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.12 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
{
"name": "robotstxt-manager",
"author": "Chris W.",
"version": "3.0.0",
"license": "GNU GPLv3",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ChrisWinters/robotstxt-manager/"
},
"bugs": {
"url": "https://github.com/ChrisWinters/robotstxt-manager/issues"
},
"keywords": [
"wordpress",
"bootstrap",
"plugin",
"robotstxt",
"robots.txt",
"robots",
"robot",
"spiders",
"virtual",
"search",
"google",
"seo"
],
"scripts": {
"css": "npm-run-all css-build css-prefix css-minify",
"css-build": "sass --style expanded --no-source-map --no-error-css _src/scss/style.scss:assets/css/style.css",
"css-prefix": "postcss --config _src/postcss-config.js --replace \"assets/css/*.css\" \"!assets/css/*.min.css\"",
"css-minify": "cleancss -O1 --format breakWidth=1f --with-rebase --output assets/css/style.min.css \"assets/css/*.css\" \"!assets/css/*.min.css\"",
"translate": "wp-pot --src '**/*.php' --dest-file 'lang/robotstxt-manager.pot' --domain 'robotstxt-manager' --bug-report 'https://github.com/ChrisWinters/robotstxt-manager/issues'",
"version": "node ./_src/version.js",
"zip": "npm-run-all copy-files zip-files remove-zip",
"copy-files": "copyfiles -e ./_src/** -e ./node_modules/** -e ./.editorconfig -e ./.gitattributes -e ./.gitignore -e ./robotstxt-manager.zip -e ./package*.json -F ./* ./*/** zip/robotstxt-manager",
"zip-files": "node ./_src/zipFiles.js",
"remove-zip": "node ./_src/removeZip.js"
},
"devDependencies": {
"archiver": "^5.3.1",
"autoprefixer": "^10.4.13",
"bootstrap": "^5.2.3",
"clean-css-cli": "^5.6.1",
"copyfiles": "^2.4.1",
"dotenv-expand": "^9.0.0",
"fs-extra": "^11.1.0",
"inquirer": "^9.1.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"postcss-cli": "^10.1.0",
"replace-in-file": "^6.3.5",
"sass": "^1.56.1",
"wp-pot-cli": "^1.5.0"
}
}