1
0
mirror of https://github.com/lancedikson/bowser synced 2026-09-22 20:14:20 +00:00
Files
lancedikson_bowser/package.json

102 lines
2.4 KiB
JSON
Raw Normal View History

2011-04-27 15:17:11 -07:00
{
2014-01-27 14:01:27 -08:00
"name": "bowser",
"description": "Lightweight browser detector",
"files": [
"src",
"dist",
"index.d.ts"
],
2014-01-27 14:01:27 -08:00
"keywords": [
"browser",
"useragent",
"user-agent",
"parser",
"ua",
"detection",
"ender",
"sniff"
2014-01-27 14:01:27 -08:00
],
"homepage": "https://github.com/bowser-js/bowser",
2014-01-27 14:01:27 -08:00
"author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
2018-06-27 23:04:25 +03:00
"contributors": [
{
"name": "Denis Demchenko",
"url": "http://twitter.com/lancedikson"
},
{
"name": "Naor Peled",
"url": "https://github.com/naorpeled"
2018-06-27 23:04:25 +03:00
}
],
"main": "./dist/umd/bowser.umd.js",
"browser": "./dist/esm/bowser.mjs",
"module": "./dist/esm/bowser.mjs",
"types": "index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./dist/esm/bowser.mjs"
},
"require": {
"types": "./index.d.ts",
"default": "./dist/umd/bowser.umd.js"
}
}
2026-06-15 08:08:54 +09:00
},
2014-01-27 14:01:27 -08:00
"repository": {
"type": "git",
"url": "git+https://github.com/bowser-js/bowser.git"
2014-01-27 14:01:27 -08:00
},
"devDependencies": {
"@babel/cli": "^7.29.7",
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/register": "^7.29.7",
2026-06-16 16:58:53 +09:00
"@eslint/js": "^10.0.1",
"@rolldown/plugin-babel": "0.2.3",
"ava": "^3.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^8.0.0",
"coveralls": "^3.0.6",
2019-07-16 21:07:51 +03:00
"docdash": "^1.1.1",
2026-06-15 08:08:54 +09:00
"core-js": "^3.49.0",
"eslint": "^10.7.0",
2026-06-16 16:58:53 +09:00
"eslint-config-airbnb-extended": "^3.1.0",
"eslint-plugin-ava": "^17.0.1",
"eslint-plugin-import": "^2.32.0",
2026-06-17 20:17:46 +09:00
"gh-pages": "^3.0.0",
2019-07-16 21:07:51 +03:00
"jsdoc": "^3.6.3",
"nyc": "^18.0.0",
2026-06-15 08:08:54 +09:00
"regenerator-runtime": "^0.14.1",
2026-06-16 17:57:43 +09:00
"sinon": "^22.0.0",
"testem": "^3.0.0",
"tsdown": "^0.22.7",
"yamljs": "^0.3.0"
2017-04-09 17:13:00 +03:00
},
"ava": {
"require": [
2019-01-19 12:07:15 +02:00
"@babel/register"
]
2015-05-03 13:14:06 +02:00
},
"bugs": {
"url": "https://github.com/bowser-js/bowser/issues"
2015-05-03 13:14:06 +02:00
},
"directories": {
"test": "test"
},
"scripts": {
"build": "tsdown",
"generate-and-deploy-docs": "pnpm generate-docs && gh-pages --dist docs --dest docs",
"watch": "tsdown --watch",
2023-11-13 11:11:28 +02:00
"lint:check": "eslint ./src",
"lint:fix": "eslint --fix ./src",
2017-08-20 18:37:01 +03:00
"testem": "testem",
"test": "nyc --reporter=html --reporter=text ava",
"test:watch": "ava --watch",
2018-07-05 22:44:43 +03:00
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate-docs": "jsdoc -c jsdoc.json"
2015-05-03 13:14:06 +02:00
},
"license": "MIT"
2011-04-27 15:17:11 -07:00
}