1 | {
|
2 | "name": "universal-user-agent",
|
3 | "version": "7.0.2",
|
4 | "type": "module",
|
5 | "description": "Get a user agent string across all JavaScript Runtime Environments",
|
6 | "exports": "./index.js",
|
7 | "types": "index.d.ts",
|
8 | "repository": "github:gr2m/universal-user-agent",
|
9 | "keywords": [],
|
10 | "author": "Gregor Martynus (https://github.com/gr2m)",
|
11 | "license": "ISC",
|
12 | "scripts": {
|
13 | "lint": "prettier --check '*.{js,json,md}'",
|
14 | "lint:fix": "prettier --write '*.{js,json,md}'",
|
15 | "test": "npm run test:code && npm run test:types",
|
16 | "test:code": "node test.js",
|
17 | "test:types": "tsd"
|
18 | },
|
19 | "devDependencies": {
|
20 | "prettier": "^2.0.0",
|
21 | "tsd": "^0.17.0"
|
22 | }
|
23 | }
|