-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
67 lines (67 loc) · 1.45 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
{
"name": "react-device-detect",
"version": "2.2.3",
"description": "Detect device type and render your component according to it",
"main": "dist/lib.js",
"typings": "./index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/duskload/react-device-detect/"
},
"keywords": [
"useragent",
"mobile",
"phone",
"tablet",
"detect",
"device",
"browser",
"smart-tv",
"smarttv",
"version",
"model",
"console"
],
"peerDependencies": {
"react": ">= 0.14.0",
"react-dom": ">= 0.14.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"cover": "jest --coverage",
"build": "rollup -c",
"prepare": "npm run build"
},
"jest": {
"setupFiles": [
"./.jestSetup.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"./.jestSetup.js"
]
},
"author": {
"name": "Michael Laktionov",
"email": "[email protected]"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/react": "^17.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"jest": "^27.2.2",
"raf": "^3.4.0",
"react-test-renderer": "^16.0.0",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"ua-parser-js": "^1.0.33"
}
}