browser-detect
Version:
Simplify detecting your browser
96 lines (95 loc) • 2.42 kB
JSON
{
"name": "browser-detect",
"version": "0.2.28",
"description": "Simplify detecting your browser",
"main": "dist/browser-detect.umd.js",
"module": "dist/browser-detect.es5.js",
"typings": "dist/types/browser-detect.d.ts",
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts'",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"typedoc": "typedoc --out docs --target es6 --theme minimal --mode file src --exclude **/*.spec.ts",
"test": "nyc mocha"
},
"files": [
"dist"
],
"nyc": {
"all": true,
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"includes": [
"src/**/!(*.spec).ts"
],
"exclude": [
"**/*.spec.ts",
"**/*.d.ts",
"**/*.interface.ts",
"rollup.config.ts",
"coverage",
"docs/",
"dist/",
"demo/",
"examples/"
],
"reporter": [
"lcov",
"json"
]
},
"repository": {
"type": "git",
"url": "https://github.com/KennethanCeyer/browser-detect.git"
},
"keywords": [
"browser",
"agent",
"modernizr",
"detect",
"node",
"client"
],
"author": "PIGNOSE <kennethan@nhpcw.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KennethanCeyer/browser-detect/issues"
},
"homepage": "https://github.com/KennethanCeyer/browser-detect",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"codecov": "^3.0.2",
"coveralls": "^3.0.1",
"dts-gen": "^0.5.7",
"lodash": "^4.17.10",
"lodash.camelcase": "^4.3.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rollup": "^0.60.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.14.0",
"source-map-support": "^0.5.6",
"ts-loader": "^4.4.0",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typedoc": "^0.11.1",
"typescript": "^2.9.1",
"webpack": "^4.12.0"
},
"dependencies": {
"core-js": "^2.5.7"
}
}