43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "psl",
|
|
"version": "1.10.0",
|
|
"description": "Domain name parser based on the Public Suffix List",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:lupomontero/psl.git"
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"test": "mocha test/*.spec.js",
|
|
"test:browserstack": "browserstack-node-sdk playwright test",
|
|
"watch": "mocha test/*.spec.js --watch",
|
|
"prebuild": "./scripts/update-rules.js",
|
|
"build": "browserify ./index.js --standalone=psl > ./dist/psl.js",
|
|
"postbuild": "cat ./dist/psl.js | uglifyjs -c -m > ./dist/psl.min.js",
|
|
"commit-and-pr": "commit-and-pr",
|
|
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"%h %s (%an <%ae>)\""
|
|
},
|
|
"keywords": [
|
|
"publicsuffix",
|
|
"publicsuffixlist"
|
|
],
|
|
"author": "Lupo Montero <lupomontero@gmail.com> (https://lupomontero.com/)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"punycode": "^2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.48.2",
|
|
"browserify": "^17.0.1",
|
|
"browserstack-node-sdk": "^1.34.21",
|
|
"chai": "^5.1.2",
|
|
"commit-and-pr": "^1.0.4",
|
|
"eslint": "^9.14.0",
|
|
"JSONStream": "^1.3.5",
|
|
"mocha": "^10.8.2",
|
|
"request": "^2.88.2",
|
|
"uglify-js": "^3.19.3"
|
|
}
|
|
}
|