-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
57 lines (57 loc) · 2.56 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
{
"name": "backlink-checker-php",
"version": "2.0.0",
"description": "Validates a predefined list of backlinks on remote websites that they exist and are correct (for SEO). Simple and Javascript-enabled web engines are used for scraping.",
"license": "GPL-3.0",
"author": "Ramil Valitov <[email protected]>",
"scripts": {
"coverage": "php ./vendor/bin/phpunit --coverage-clover ./coverage/clover.xml --coverage-html ./coverage/html --coverage-xml ./coverage/xml --coverage-text",
"json": "jsonlint -q ./*.json",
"lint": "eslint .",
"markdown": "remark . --frail",
"markdown:fix": "remark . --frail --output",
"markdownlint": "markdownlint --config .markdownlint.json \"*.md\"",
"package": "npx npm-package-json-lint .",
"phpcs": "php ./vendor/bin/phpcs --standard=PSR2 src/",
"phpcs-fixer": "php ./vendor/bin/php-cs-fixer --verbose check",
"phpcs-fixer:fix": "php ./vendor/bin/php-cs-fixer fix",
"phpmd": "php ./vendor/bin/phpmd src/ text phpmd.xml",
"phpunit": "php ./vendor/bin/phpunit",
"prettier": "prettier --config .prettierrc.cjs --check .",
"prettier:fix": "prettier --config .prettierrc.cjs --write .",
"psalm": "php ./vendor/bin/psalm --show-info=true",
"sort": "sort-package-json ./package.json ./composer.json",
"start-server": "npx serve -n tests/data",
"test": "npm run markdown && npm run markdownlint && npm run json && npm run package && npm run lint && npm run prettier && npm run phpcs && npm run phpmd && npm run phpcs-fixer && npm run psalm && npm run coverage",
"test:small": "npm run markdown && npm run markdownlint && npm run json && npm run package && npm run lint && npm run phpcs && npm run phpmd && npm run phpcs-fixer && npm run psalm && npm run coverage"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended"
]
},
"dependencies": {
"@zoon/puphpeteer": "https://github.com/zoonru/puphpeteer/tarball/zoon"
},
"devDependencies": {
"@prantlf/jsonlint": "^16.0.0",
"@prettier/plugin-xml": "^3.4.1",
"eslint": "^9.17.0",
"eslint-plugin-yml": "^1.16.0",
"markdownlint-cli": "^0.43.0",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.1",
"prettier": "^3.4.2",
"remark-cli": "^12.0.1",
"remark-lint-list-item-indent": "^4.0.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"serve": "^14.2.4",
"sort-package-json": "^2.12.0",
"wait-on": "^8.0.1"
},
"engines": {
"node": ">=18.0.0"
}
}