-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
executable file
·59 lines (59 loc) · 1.62 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
{
"name": "node-device-detector",
"version": "2.1.5",
"description": "Nodejs device detector (port matomo-org/device-detector)",
"main": "index.js",
"scripts": {
"test": "mocha -- -R dot tests/*.spec.js",
"test-coverage-text": "nyc --check-coverage --lines 90 --per-file --reporter=text mocha -- -R dot tests/*.spec.js",
"test-coverage-html": "nyc --reporter=html mocha -- -R dot tests/*.spec.js",
"prettier": "prettier --write .",
"eslint": "eslint . --ext .jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanchezzzhak/node-device-detector.git"
},
"keywords": [
"device-detector",
"device detect",
"detect mobile",
"detect tablet",
"detect phablet",
"detect os",
"detect browser",
"detect device brand",
"detect device model",
"detect user-agent",
"detect trusted device",
"client-hints",
"useragent"
],
"author": "sanchezzzhak",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanchezzzhak/node-device-detector/issues"
},
"homepage": "https://github.com/sanchezzzhak/node-device-detector#readme",
"dependencies": {
"js-yaml": "^4.1.0"
},
"engines": {
"node": ">= 10.x",
"npm": ">= 6.x"
},
"devDependencies": {
"@fast-csv/parse": "^5.0.0",
"@fast-csv/format": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"benchmark": "^2.1.4",
"chai": "^4.3.4",
"cli-table": "^0.3.6",
"commander": "^11.1.0",
"eslint": "^8.27.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"typescript": "^4.8.4"
}
}