forked from ryanburgess/device-detect
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.42 KB
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
{
"name": "@ntcgrgr/device-detect",
"version": "1.1.3",
"description": "JavaScript module to check if user agent to return the device and browser.",
"main": "dist/device-detect.js",
"scripts": {
"test": "jest",
"build": "webpack",
"prepublishOnly": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/ntcgrgr/device-detect.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"javascript",
"module",
"device",
"detect",
"user",
"agent",
"browser"
],
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.10.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"jshint-stylish": "^1.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"author": "Ryan Burgess <rburgess@evernote.com> (http://everernote.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ntcgrgr/device-detect/issues"
},
"homepage": "https://github.com/ntcgrgr/device-detect",
"jest": {
"verbose": true,
"transform": {
"^.+\\.(js)$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/test-data-provider.js"
],
"reporters": [
"default",
"jest-junit"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}