2011-04-27 15:17:11 -07:00
|
|
|
{
|
2014-01-27 14:01:27 -08:00
|
|
|
"name": "bowser",
|
2017-04-04 23:17:27 +03:00
|
|
|
"description": "Lightweight browser detector",
|
2026-02-09 00:03:04 +02:00
|
|
|
"files": [
|
|
|
|
|
"src/",
|
|
|
|
|
"es5.js",
|
|
|
|
|
"bundled.js",
|
|
|
|
|
"index.d.ts"
|
|
|
|
|
],
|
2014-01-27 14:01:27 -08:00
|
|
|
"keywords": [
|
|
|
|
|
"browser",
|
2017-04-04 23:17:27 +03:00
|
|
|
"useragent",
|
|
|
|
|
"user-agent",
|
|
|
|
|
"parser",
|
|
|
|
|
"ua",
|
|
|
|
|
"detection",
|
|
|
|
|
"ender",
|
|
|
|
|
"sniff"
|
2014-01-27 14:01:27 -08:00
|
|
|
],
|
2025-11-30 18:58:23 +02:00
|
|
|
"homepage": "https://github.com/bowser-js/bowser",
|
2014-01-27 14:01:27 -08:00
|
|
|
"author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
|
2018-06-27 23:04:25 +03:00
|
|
|
"contributors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Denis Demchenko",
|
|
|
|
|
"url": "http://twitter.com/lancedikson"
|
2025-11-23 00:08:32 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Naor Peled",
|
|
|
|
|
"url": "https://github.com/naorpeled"
|
2018-06-27 23:04:25 +03:00
|
|
|
}
|
|
|
|
|
],
|
2018-08-02 21:36:41 +03:00
|
|
|
"main": "es5.js",
|
2019-09-10 19:02:13 +03:00
|
|
|
"browser": "es5.js",
|
2019-09-05 18:17:01 -03:00
|
|
|
"module": "src/bowser.js",
|
2019-07-30 11:18:59 +10:00
|
|
|
"types": "index.d.ts",
|
2026-03-22 20:40:23 +02:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20"
|
|
|
|
|
},
|
2014-01-27 14:01:27 -08:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2025-11-30 18:58:23 +02:00
|
|
|
"url": "git+https://github.com/bowser-js/bowser.git"
|
2014-01-27 14:01:27 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-03-22 20:40:23 +02:00
|
|
|
"@babel/cli": "^7.23.0",
|
|
|
|
|
"@babel/core": "^7.23.0",
|
|
|
|
|
"@babel/preset-env": "^7.23.0",
|
|
|
|
|
"@babel/register": "^7.23.0",
|
2020-01-19 15:21:06 +00:00
|
|
|
"ava": "^3.0.0",
|
2026-03-22 20:40:23 +02:00
|
|
|
"babel-loader": "^9.1.3",
|
|
|
|
|
"babel-plugin-add-module-exports": "^1.0.4",
|
|
|
|
|
"babel-plugin-istanbul": "^6.1.1",
|
|
|
|
|
"compression-webpack-plugin": "^10.0.0",
|
|
|
|
|
"core-js": "^3.33.0",
|
|
|
|
|
"coveralls": "^3.1.1",
|
|
|
|
|
"docdash": "^2.0.2",
|
|
|
|
|
"eslint": "^8.53.0",
|
|
|
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
|
|
|
"eslint-plugin-ava": "^14.0.0",
|
|
|
|
|
"eslint-plugin-import": "^2.29.0",
|
|
|
|
|
"gh-pages": "^6.1.0",
|
|
|
|
|
"jsdoc": "^4.0.2",
|
|
|
|
|
"nyc": "^15.1.0",
|
|
|
|
|
"sinon": "^17.0.1",
|
|
|
|
|
"testem": "^3.10.1",
|
|
|
|
|
"webpack": "^5.89.0",
|
|
|
|
|
"webpack-bundle-analyzer": "^4.10.1",
|
|
|
|
|
"webpack-cli": "^5.1.4",
|
2017-08-20 18:21:17 +03:00
|
|
|
"yamljs": "^0.3.0"
|
2017-04-09 17:13:00 +03:00
|
|
|
},
|
|
|
|
|
"ava": {
|
|
|
|
|
"require": [
|
2019-01-19 12:07:15 +02:00
|
|
|
"@babel/register"
|
|
|
|
|
]
|
2015-05-03 13:14:06 +02:00
|
|
|
},
|
|
|
|
|
"bugs": {
|
2025-11-30 18:58:23 +02:00
|
|
|
"url": "https://github.com/bowser-js/bowser/issues"
|
2015-05-03 13:14:06 +02:00
|
|
|
},
|
|
|
|
|
"directories": {
|
|
|
|
|
"test": "test"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2018-07-09 19:05:19 +03:00
|
|
|
"build": "webpack --config webpack.config.js",
|
2019-07-16 21:56:06 +03:00
|
|
|
"generate-and-deploy-docs": "npm run generate-docs && gh-pages --dist docs --dest docs",
|
2019-06-16 23:57:50 +03:00
|
|
|
"watch": "webpack --watch --config webpack.config.js",
|
2023-11-13 11:11:28 +02:00
|
|
|
"lint:check": "eslint ./src",
|
|
|
|
|
"lint:fix": "eslint --fix ./src",
|
2017-08-20 18:37:01 +03:00
|
|
|
"testem": "testem",
|
2018-09-09 14:01:45 +03:00
|
|
|
"test": "nyc --reporter=html --reporter=text ava",
|
2018-12-27 17:49:58 +01:00
|
|
|
"test:watch": "ava --watch",
|
2018-07-05 22:44:43 +03:00
|
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
2019-07-16 21:56:06 +03:00
|
|
|
"generate-docs": "jsdoc -c jsdoc.json"
|
2015-05-03 13:14:06 +02:00
|
|
|
},
|
|
|
|
|
"license": "MIT"
|
2011-04-27 15:17:11 -07:00
|
|
|
}
|