mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
83 lines
2.2 KiB
JSON
83 lines
2.2 KiB
JSON
{
|
|
"name": "bowser",
|
|
"version": "2.5.3",
|
|
"description": "Lightweight browser detector",
|
|
"keywords": [
|
|
"browser",
|
|
"useragent",
|
|
"user-agent",
|
|
"parser",
|
|
"ua",
|
|
"detection",
|
|
"ender",
|
|
"sniff"
|
|
],
|
|
"homepage": "https://github.com/lancedikson/bowser",
|
|
"author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
|
|
"contributors": [
|
|
{
|
|
"name": "Denis Demchenko",
|
|
"url": "http://twitter.com/lancedikson"
|
|
}
|
|
],
|
|
"main": "es5.js",
|
|
"types": "index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lancedikson/bowser.git"
|
|
},
|
|
"devDependencies": {
|
|
"@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",
|
|
"babel-plugin-add-module-exports": "^1.0.2",
|
|
"babel-plugin-istanbul": "^5.1.4",
|
|
"compression-webpack-plugin": "^3.0.0",
|
|
"coveralls": "^3.0.5",
|
|
"docdash": "^1.1.1",
|
|
"eslint": "^6.0.1",
|
|
"eslint-config-airbnb-base": "^13.2.0",
|
|
"eslint-plugin-ava": "^7.1.0",
|
|
"eslint-plugin-import": "^2.18.0",
|
|
"gh-pages": "^2.0.1",
|
|
"jsdoc": "^3.6.3",
|
|
"nyc": "^14.1.1",
|
|
"sinon": "^7.3.2",
|
|
"testem": "^2.17.0",
|
|
"webpack": "^4.39.1",
|
|
"webpack-bundle-analyzer": "^3.3.2",
|
|
"webpack-cli": "^3.3.6",
|
|
"yamljs": "^0.3.0"
|
|
},
|
|
"ava": {
|
|
"require": [
|
|
"@babel/register"
|
|
]
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/lancedikson/bowser/issues"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --config webpack.config.js",
|
|
"generate-and-deploy-docs": "npm run generate-docs && gh-pages --dist docs --dest docs",
|
|
"watch": "webpack --watch --config webpack.config.js",
|
|
"deploy": "jsdoc -c jsdoc.json && gh-pages --dist docs --dest docs",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint ./src",
|
|
"testem": "testem",
|
|
"test": "nyc --reporter=html --reporter=text ava",
|
|
"test:watch": "ava --watch",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
|
"generate-docs": "jsdoc -c jsdoc.json"
|
|
},
|
|
"license": "MIT"
|
|
}
|