package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "psl",
  3. "version": "1.1.31",
  4. "description": "Domain name parser based on the Public Suffix List",
  5. "repository": {
  6. "type": "git",
  7. "url": "git@github.com:wrangr/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": "node ./data/build.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. },
  18. "keywords": [
  19. "publicsuffix",
  20. "publicsuffixlist"
  21. ],
  22. "author": "Lupo Montero",
  23. "license": "MIT",
  24. "devDependencies": {
  25. "JSONStream": "^1.3.5",
  26. "browserify": "^16.2.3",
  27. "eslint": "^5.10.0",
  28. "eslint-config-hapi": "^12.0.0",
  29. "eslint-plugin-hapi": "^4.1.0",
  30. "event-stream": "3.3.4",
  31. "karma": "^3.1.3",
  32. "karma-browserify": "^6.0.0",
  33. "karma-mocha": "^1.3.0",
  34. "karma-mocha-reporter": "^2.2.5",
  35. "karma-phantomjs-launcher": "^1.0.4",
  36. "mocha": "^5.2.0",
  37. "phantomjs-prebuilt": "^2.1.16",
  38. "request": "^2.88.0",
  39. "uglify-js": "^3.4.9",
  40. "watchify": "^3.11.0"
  41. }
  42. }