forked from sanchezzzhak/node-device-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "node-device-detector",
"version": "1.1.3",
"description": "Nodejs device detector (port Piwik)",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover --report html ./node_modules/mocha/bin/_mocha -- -R spec tests/*.spec.js",
"test": "mocha -- -R spec tests/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanchezzzhak/node-device-detector.git"
},
"keywords": [
"device-detector",
"detect mobile",
"detect tablet",
"detect os",
"detect device brand",
"detect device model"
],
"author": "sanchezzzhak",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanchezzzhak/node-device-detector/issues"
},
"homepage": "https://github.com/sanchezzzhak/node-device-detector#readme",
"dependencies": {
"yamljs": ">=0.3.0"
},
"engines": {
"node": ">= 10.x",
"npm": ">= 6.x"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.0.2",
"faker": "^4.1.0",
"mocha": "^3.4.2",
"nock": "^9.6.1",
"nyc": "^11.9.0",
"sinon": "^4.5.0"
}
}