package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "bowser",
  3. "version": "2.11.0",
  4. "description": "Lightweight browser detector",
  5. "keywords": [
  6. "browser",
  7. "useragent",
  8. "user-agent",
  9. "parser",
  10. "ua",
  11. "detection",
  12. "ender",
  13. "sniff"
  14. ],
  15. "homepage": "https://github.com/lancedikson/bowser",
  16. "author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
  17. "contributors": [
  18. {
  19. "name": "Denis Demchenko",
  20. "url": "http://twitter.com/lancedikson"
  21. }
  22. ],
  23. "main": "es5.js",
  24. "browser": "es5.js",
  25. "module": "src/bowser.js",
  26. "types": "index.d.ts",
  27. "repository": {
  28. "type": "git",
  29. "url": "git+https://github.com/lancedikson/bowser.git"
  30. },
  31. "devDependencies": {
  32. "@babel/cli": "^7.11.6",
  33. "@babel/core": "^7.8.0",
  34. "@babel/polyfill": "^7.8.3",
  35. "@babel/preset-env": "^7.8.2",
  36. "@babel/register": "^7.8.3",
  37. "ava": "^3.0.0",
  38. "babel-eslint": "^10.0.3",
  39. "babel-loader": "^8.0.6",
  40. "babel-plugin-add-module-exports": "^1.0.2",
  41. "babel-plugin-istanbul": "^6.0.0",
  42. "compression-webpack-plugin": "^4.0.0",
  43. "coveralls": "^3.0.6",
  44. "docdash": "^1.1.1",
  45. "eslint": "^6.5.1",
  46. "eslint-config-airbnb-base": "^13.2.0",
  47. "eslint-plugin-ava": "^10.0.0",
  48. "eslint-plugin-import": "^2.18.2",
  49. "gh-pages": "^3.0.0",
  50. "jsdoc": "^3.6.3",
  51. "nyc": "^15.0.0",
  52. "sinon": "^9.0.0",
  53. "testem": "^3.0.0",
  54. "webpack": "^4.41.0",
  55. "webpack-bundle-analyzer": "^3.5.2",
  56. "webpack-cli": "^3.3.9",
  57. "yamljs": "^0.3.0"
  58. },
  59. "ava": {
  60. "require": [
  61. "@babel/register"
  62. ]
  63. },
  64. "bugs": {
  65. "url": "https://github.com/lancedikson/bowser/issues"
  66. },
  67. "directories": {
  68. "test": "test"
  69. },
  70. "scripts": {
  71. "build": "webpack --config webpack.config.js",
  72. "generate-and-deploy-docs": "npm run generate-docs && gh-pages --dist docs --dest docs",
  73. "watch": "webpack --watch --config webpack.config.js",
  74. "prepublishOnly": "npm run build",
  75. "lint": "eslint ./src",
  76. "testem": "testem",
  77. "test": "nyc --reporter=html --reporter=text ava",
  78. "test:watch": "ava --watch",
  79. "coverage": "nyc report --reporter=text-lcov | coveralls",
  80. "generate-docs": "jsdoc -c jsdoc.json"
  81. },
  82. "license": "MIT"
  83. }