2011-04-27 22:17:11 +00:00
|
|
|
{
|
2014-01-27 22:01:27 +00:00
|
|
|
"name": "bowser",
|
2019-08-04 20:50:01 +00:00
|
|
|
"version": "2.5.3",
|
2017-04-04 20:17:27 +00:00
|
|
|
"description": "Lightweight browser detector",
|
2014-01-27 22:01:27 +00:00
|
|
|
"keywords": [
|
|
|
|
"browser",
|
2017-04-04 20:17:27 +00:00
|
|
|
"useragent",
|
|
|
|
"user-agent",
|
|
|
|
"parser",
|
|
|
|
"ua",
|
|
|
|
"detection",
|
|
|
|
"ender",
|
|
|
|
"sniff"
|
2014-01-27 22:01:27 +00:00
|
|
|
],
|
2017-05-18 18:54:03 +00:00
|
|
|
"homepage": "https://github.com/lancedikson/bowser",
|
2014-01-27 22:01:27 +00:00
|
|
|
"author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
|
2018-06-27 20:04:25 +00:00
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Denis Demchenko",
|
|
|
|
"url": "http://twitter.com/lancedikson"
|
|
|
|
}
|
|
|
|
],
|
2018-08-02 18:36:41 +00:00
|
|
|
"main": "es5.js",
|
2019-07-30 01:18:59 +00:00
|
|
|
"types": "index.d.ts",
|
2014-01-27 22:01:27 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-06-27 20:04:25 +00:00
|
|
|
"url": "git+https://github.com/lancedikson/bowser.git"
|
2014-01-27 22:01:27 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-07-16 18:07:51 +00:00
|
|
|
"@babel/cli": "^7.5.0",
|
|
|
|
"@babel/core": "^7.5.4",
|
|
|
|
"@babel/polyfill": "^7.4.4",
|
|
|
|
"@babel/preset-env": "^7.5.4",
|
|
|
|
"@babel/register": "^7.4.4",
|
|
|
|
"ava": "^2.2.0",
|
|
|
|
"babel-eslint": "^10.0.2",
|
|
|
|
"babel-loader": "^8.0.6",
|
2019-04-17 17:19:00 +00:00
|
|
|
"babel-plugin-add-module-exports": "^1.0.2",
|
2019-07-16 18:07:51 +00:00
|
|
|
"babel-plugin-istanbul": "^5.1.4",
|
2019-07-17 10:41:48 +00:00
|
|
|
"compression-webpack-plugin": "^3.0.0",
|
2019-07-16 18:07:51 +00:00
|
|
|
"coveralls": "^3.0.5",
|
|
|
|
"docdash": "^1.1.1",
|
2019-06-25 02:39:36 +00:00
|
|
|
"eslint": "^6.0.1",
|
2019-07-16 18:07:51 +00:00
|
|
|
"eslint-config-airbnb-base": "^13.2.0",
|
|
|
|
"eslint-plugin-ava": "^7.1.0",
|
|
|
|
"eslint-plugin-import": "^2.18.0",
|
2019-02-14 03:41:45 +00:00
|
|
|
"gh-pages": "^2.0.1",
|
2019-07-16 18:07:51 +00:00
|
|
|
"jsdoc": "^3.6.3",
|
|
|
|
"nyc": "^14.1.1",
|
|
|
|
"sinon": "^7.3.2",
|
|
|
|
"testem": "^2.17.0",
|
2019-08-02 12:48:38 +00:00
|
|
|
"webpack": "^4.39.1",
|
2019-06-16 20:57:50 +00:00
|
|
|
"webpack-bundle-analyzer": "^3.3.2",
|
2019-07-16 18:07:51 +00:00
|
|
|
"webpack-cli": "^3.3.6",
|
2017-08-20 15:21:17 +00:00
|
|
|
"yamljs": "^0.3.0"
|
2017-04-09 14:13:00 +00:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"require": [
|
2019-01-19 10:07:15 +00:00
|
|
|
"@babel/register"
|
|
|
|
]
|
2015-05-03 11:14:06 +00:00
|
|
|
},
|
|
|
|
"bugs": {
|
2018-07-05 07:07:22 +00:00
|
|
|
"url": "https://github.com/lancedikson/bowser/issues"
|
2015-05-03 11:14:06 +00:00
|
|
|
},
|
|
|
|
"directories": {
|
|
|
|
"test": "test"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2018-07-09 16:05:19 +00:00
|
|
|
"build": "webpack --config webpack.config.js",
|
2019-07-16 18:56:06 +00:00
|
|
|
"generate-and-deploy-docs": "npm run generate-docs && gh-pages --dist docs --dest docs",
|
2019-06-16 20:57:50 +00:00
|
|
|
"watch": "webpack --watch --config webpack.config.js",
|
|
|
|
"deploy": "jsdoc -c jsdoc.json && gh-pages --dist docs --dest docs",
|
2019-01-09 23:07:06 +00:00
|
|
|
"prepublishOnly": "npm run build",
|
2018-09-09 09:58:44 +00:00
|
|
|
"lint": "eslint ./src",
|
2017-08-20 15:37:01 +00:00
|
|
|
"testem": "testem",
|
2018-09-09 11:01:45 +00:00
|
|
|
"test": "nyc --reporter=html --reporter=text ava",
|
2018-12-27 16:49:58 +00:00
|
|
|
"test:watch": "ava --watch",
|
2018-07-05 19:44:43 +00:00
|
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
2019-07-16 18:56:06 +00:00
|
|
|
"generate-docs": "jsdoc -c jsdoc.json"
|
2015-05-03 11:14:06 +00:00
|
|
|
},
|
|
|
|
"license": "MIT"
|
2011-04-27 22:17:11 +00:00
|
|
|
}
|