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

75 lines
1.8 KiB
JSON
Raw Normal View History

2011-04-27 22:17:11 +00:00
{
2014-01-27 22:01:27 +00:00
"name": "bowser",
2018-07-17 18:26:45 +00:00
"version": "2.0.0-alpha.2",
"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": "src/bowser.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",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.3.1",
2018-06-30 16:21:09 +00:00
"babel-plugin-istanbul": "^4.1.6",
"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-07-05 19:44:43 +00:00
"docdash": "^0.4.0",
2018-06-27 20:08:54 +00:00
"eslint": "^4.19.1",
2017-12-20 21:29:06 +00:00
"eslint-config-airbnb-base": "^12.1.0",
2018-06-27 20:08:54 +00:00
"eslint-plugin-ava": "^4.5.1",
"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",
2017-12-20 20:14:39 +00:00
"sinon": "^2.4.1",
2018-06-27 20:08:54 +00:00
"testem": "^1.18.5",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"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": {
"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",
"prepublish": "npm run build",
2018-06-30 14:35:12 +00:00
"lint": "eslint ./src --fix",
2017-08-20 15:37:01 +00:00
"testem": "testem",
2018-06-30 15:50:05 +00:00
"test": "eslint ./src & nyc --reporter=html --reporter=text ava",
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
}