1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 22:30:44 +00:00
lancedikson_bowser/package.json

84 lines
2.2 KiB
JSON
Raw Normal View History

2011-04-27 22:17:11 +00:00
{
2014-01-27 22:01:27 +00:00
"name": "bowser",
"version": "2.11.0",
"description": "Lightweight browser detector",
2014-01-27 22:01:27 +00:00
"keywords": [
"browser",
"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"
}
],
"main": "es5.js",
"browser": "es5.js",
"module": "src/bowser.js",
"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": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.8.0",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.2",
"@babel/register": "^7.8.3",
"ava": "^3.0.0",
"babel-eslint": "^10.0.3",
2019-07-16 18:07:51 +00:00
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^6.0.0",
"compression-webpack-plugin": "^4.0.0",
"coveralls": "^3.0.6",
2019-07-16 18:07:51 +00:00
"docdash": "^1.1.1",
"eslint": "^6.5.1",
2019-07-16 18:07:51 +00:00
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-ava": "^10.0.0",
"eslint-plugin-import": "^2.18.2",
"gh-pages": "^3.0.0",
2019-07-16 18:07:51 +00:00
"jsdoc": "^3.6.3",
"nyc": "^15.0.0",
"sinon": "^9.0.0",
"testem": "^3.0.0",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.9",
"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": {
"url": "https://github.com/lancedikson/bowser/issues"
2015-05-03 11:14:06 +00:00
},
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"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",
"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",
"test": "nyc --reporter=html --reporter=text ava",
"test:watch": "ava --watch",
2018-07-05 19:44:43 +00:00
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate-docs": "jsdoc -c jsdoc.json"
2015-05-03 11:14:06 +00:00
},
"license": "MIT"
2011-04-27 22:17:11 +00:00
}