universal-user-agent
Advanced tools
Comparing version 3.0.0 to 4.0.0
{ | ||
"name": "universal-user-agent", | ||
"version": "3.0.0", | ||
"description": "Get a user agent string in both browser and node", | ||
"version": "4.0.0", | ||
"license": "ISC", | ||
"files": [ | ||
"dist-*/", | ||
"bin/" | ||
], | ||
"pika": true, | ||
"sideEffects": false, | ||
"keywords": [], | ||
"repository": "https://github.com/gr2m/universal-user-agent.git", | ||
"keywords": [], | ||
"author": "Gregor Martynus (https://github.com/gr2m)", | ||
"license": "ISC", | ||
"main": "index.js", | ||
"browser": "browser.js", | ||
"types": "index.d.ts", | ||
"scripts": { | ||
"coverage": "nyc report --reporter=html && open coverage/index.html", | ||
"coverage:upload": "nyc report --reporter=text-lcov | coveralls", | ||
"pretest": "standard", | ||
"test": "nyc mocha \"test/*-test.js\"", | ||
"test:browser": "cypress run --browser chrome", | ||
"semantic-release": "semantic-release", | ||
"travis-deploy-once": "travis-deploy-once" | ||
"dependencies": { | ||
"os-name": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"chai": "^4.1.2", | ||
"coveralls": "^3.0.2", | ||
"cypress": "^3.1.0", | ||
"mocha": "^6.0.0", | ||
"proxyquire": "^2.1.0", | ||
"nyc": "^14.0.0", | ||
"sinon": "^7.2.4", | ||
"sinon-chai": "^3.2.0", | ||
"standard": "^13.0.1", | ||
"test": "^0.6.0", | ||
"@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", | ||
"@pika/pack": "^0.5.0", | ||
"@pika/plugin-build-node": "^0.6.0", | ||
"@pika/plugin-ts-standard-pkg": "^0.6.0", | ||
"@types/jest": "^24.0.18", | ||
"jest": "^24.9.0", | ||
"prettier": "^1.18.2", | ||
"semantic-release": "^15.9.15", | ||
"travis-deploy-once": "^5.0.7" | ||
"ts-jest": "^24.0.2", | ||
"typescript": "^3.6.2" | ||
}, | ||
"dependencies": { | ||
"os-name": "^3.0.0" | ||
}, | ||
"standard": { | ||
"globals": [ | ||
"describe", | ||
"it", | ||
"beforeEach", | ||
"afterEach", | ||
"expect" | ||
] | ||
} | ||
"source": "dist-src/index.js", | ||
"types": "dist-types/index.d.ts", | ||
"main": "dist-node/index.js", | ||
"module": "dist-web/index.js" | ||
} |
@@ -7,9 +7,9 @@ # universal-user-agent | ||
[![Build Status](https://travis-ci.com/gr2m/universal-user-agent.svg?branch=master)](https://travis-ci.com/gr2m/universal-user-agent) | ||
[![Coverage Status](https://coveralls.io/repos/github/gr2m/universal-user-agent/badge.svg)](https://coveralls.io/github/gr2m/universal-user-agent) | ||
[![Greenkeeper](https://badges.greenkeeper.io/gr2m/universal-user-agent.svg)](https://greenkeeper.io/) | ||
```js | ||
const getUserAgent = require('universal-user-agent') | ||
const userAgent = getUserAgent() | ||
const { getUserAgent } = require("universal-user-agent"); | ||
// or import { getUserAgent } from "universal-user-agent"; | ||
const userAgent = getUserAgent(); | ||
// userAgent will look like this | ||
@@ -16,0 +16,0 @@ // in browser: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10
13
4944
40
2
Updatedos-name@^3.1.0