-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "is-device-mobile",
"version": "1.0.4",
"description": "A utility to determine whether the client's device is mobile or not",
"main": "dist/isMobile.js",
"module": "dist/isMobile.es.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint ./src"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/7michele7/is-device-mobile.git"
},
"keywords": [
"mobile",
"desktop",
"device detection",
"query strings",
"is mobile",
"media queries",
"pointer",
"orientation",
"devices",
"userAgent"
],
"author": "Michele Settepani <7michele7@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/7michele7/is-device-mobile#readme",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"eslint": "^6.7.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "1.19.1",
"rollup": "^1.27.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2"
}
}