-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
95 lines (95 loc) · 2.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KennethanCeyer/browser-detect/issues"
},
"homepage": "https://github.com/KennethanCeyer/browser-detect",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.115",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.4",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"codecov": "^3.0.4",
"coveralls": "^3.0.2",
"dts-gen": "^0.5.7",
"lodash": "^4.17.10",
"lodash.camelcase": "^4.3.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rollup": "^0.63.4",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.16.1",
"source-map-support": "^0.5.6",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"webpack": "^4.16.3"
},
"dependencies": {
"core-js": "^2.5.7"
}
}