package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "psl",
  3. "version": "1.8.0",
  4. "description": "Domain name parser based on the Public Suffix List",
  5. "repository": {
  6. "type": "git",
  7. "url": "git@github.com:lupomontero/psl.git"
  8. },
  9. "main": "index.js",
  10. "scripts": {
  11. "pretest": "eslint .",
  12. "test": "mocha test && karma start ./karma.conf.js --single-run",
  13. "watch": "mocha test --watch",
  14. "prebuild": "./scripts/update-rules.js",
  15. "build": "browserify ./index.js --standalone=psl > ./dist/psl.js",
  16. "postbuild": "cat ./dist/psl.js | uglifyjs -c -m > ./dist/psl.min.js",
  17. "commit-and-pr": "commit-and-pr",
  18. "changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"%h %s (%an <%ae>)\""
  19. },
  20. "keywords": [
  21. "publicsuffix",
  22. "publicsuffixlist"
  23. ],
  24. "author": "Lupo Montero <lupomontero@gmail.com> (https://lupomontero.com/)",
  25. "license": "MIT",
  26. "devDependencies": {
  27. "JSONStream": "^1.3.5",
  28. "browserify": "^16.5.0",
  29. "commit-and-pr": "^1.0.4",
  30. "eslint": "^6.8.0",
  31. "eslint-config-hapi": "^12.0.0",
  32. "eslint-plugin-hapi": "^4.1.0",
  33. "karma": "^4.4.1",
  34. "karma-browserify": "^7.0.0",
  35. "karma-mocha": "^1.3.0",
  36. "karma-mocha-reporter": "^2.2.5",
  37. "karma-phantomjs-launcher": "^1.0.4",
  38. "mocha": "^7.1.1",
  39. "phantomjs-prebuilt": "^2.1.16",
  40. "request": "^2.88.2",
  41. "uglify-js": "^3.8.0",
  42. "watchify": "^3.11.1"
  43. }
  44. }