2011-04-27 22:17:11 +00:00
|
|
|
{
|
2014-01-27 22:01:27 +00:00
|
|
|
"name": "bowser",
|
2018-09-15 11:36:48 +00:00
|
|
|
"version": "2.0.0-beta.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",
|
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": {
|
2018-06-27 19:59:32 +00:00
|
|
|
"ava": "^0.25.0",
|
2017-12-20 20:14:39 +00:00
|
|
|
"babel-cli": "^6.26.0",
|
2018-07-08 10:20:46 +00:00
|
|
|
"babel-core": "^6.26.3",
|
2018-09-09 10:27:02 +00:00
|
|
|
"babel-eslint": "^9.0.0",
|
2018-07-08 10:20:46 +00:00
|
|
|
"babel-loader": "^7.1.5",
|
2018-09-11 06:29:47 +00:00
|
|
|
"babel-plugin-add-module-exports": "^1.0.0",
|
2018-06-30 16:21:09 +00:00
|
|
|
"babel-plugin-istanbul": "^4.1.6",
|
2018-07-08 11:40:48 +00:00
|
|
|
"babel-polyfill": "^6.26.0",
|
2018-06-27 20:08:54 +00:00
|
|
|
"babel-preset-env": "^1.7.0",
|
2017-12-20 20:14:39 +00:00
|
|
|
"babel-register": "^6.26.0",
|
2018-06-30 14:35:12 +00:00
|
|
|
"coveralls": "^3.0.2",
|
2018-08-24 22:04:19 +00:00
|
|
|
"docdash": "^1.0.0",
|
|
|
|
"eslint": "^5.4.0",
|
|
|
|
"eslint-config-airbnb-base": "^13.1.0",
|
|
|
|
"eslint-plugin-ava": "^5.1.0",
|
2018-06-27 20:08:54 +00:00
|
|
|
"eslint-plugin-import": "^2.13.0",
|
2018-07-05 19:44:43 +00:00
|
|
|
"jsdoc": "^3.5.5",
|
2018-06-27 19:59:32 +00:00
|
|
|
"nyc": "^12.0.2",
|
2018-08-24 22:04:19 +00:00
|
|
|
"sinon": "^6.1.5",
|
|
|
|
"testem": "^2.9.3",
|
2018-07-08 10:20:46 +00:00
|
|
|
"webpack": "^4.15.1",
|
|
|
|
"webpack-cli": "^3.0.8",
|
2017-08-20 15:21:17 +00:00
|
|
|
"yamljs": "^0.3.0"
|
2017-04-09 14:13:00 +00:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"require": [
|
|
|
|
"babel-register"
|
|
|
|
],
|
|
|
|
"babel": "inherit"
|
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-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",
|
|
|
|
"docs": "jsdoc -c jsdoc.json"
|
2015-05-03 11:14:06 +00:00
|
|
|
},
|
|
|
|
"license": "MIT"
|
2011-04-27 22:17:11 +00:00
|
|
|
}
|