-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
{
"name": "device-detector-js",
"version": "3.0.3",
"description": "A javascript port of Matomo device-detector",
"homepage": "https://github.com/etienne-martin/device-detector-js#readme",
"keywords": [
"user-agent",
"parsing",
"parser",
"device",
"mobile",
"tablet",
"phone",
"desktop",
"os",
"bot",
"browser",
"detector"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Etienne Martin",
"url": "http://etiennemartin.ca/"
},
"contributors": [
"Alex Beauchemin <[email protected]> (https://github.com/AlexBeauchemin)",
"Ayan Dey <[email protected]> (https://github.com/whimsicaldreamer)",
"Julien Maitrehenry <[email protected]> (https://github.com/jmaitrehenry)"
],
"repository": {
"type": "git",
"url": "https://github.com/etienne-martin/device-detector-js"
},
"bugs": {
"url": "https://github.com/etienne-martin/device-detector-js/issues"
},
"engines": {
"node": ">= 8.11.4"
},
"license": "LGPL-3.0",
"scripts": {
"dev": "tsc --pretty --watch",
"predev": "yarn fixtures",
"fixtures": "sh load-fixtures.sh",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"pretest": "yarn build",
"test": "jest src --coverage --verbose",
"test:watch": "jest src --coverage --verbose --watch",
"coverage": "coveralls < ./coverage/lcov.info",
"prebuild": "rm -rf dist/ && yarn lint",
"build": "tsc --pretty"
},
"napa": {
"device-detector": "https://github.com/matomo-org/device-detector#4.2.3"
},
"napa-config": {
"cache": false
},
"dependencies": {},
"devDependencies": {
"@types/jest": "22.2.3",
"@types/node": "10.9.2",
"coveralls": "3.0.2",
"glob": "^7.1.6",
"jest": "22.4.4",
"js-yaml": "3.13.1",
"napa": "3.0.0",
"ts-jest": "22.4.6",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-eslint-rules": "4.1.1",
"typescript": "3.7.3"
}
}