-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "react-useragent",
"version": "1.2.0-alpha.0",
"description": "Utility to add user agent information to your react components",
"author": "Jon Stuebe",
"homepage": "https://github.com/jonstuebe/react-useragent#readme",
"license": "MIT",
"browser": "lib/reactUserAgent-umd.js",
"main": "lib/reactUserAgent-cjs.js",
"module": "lib/reactUserAgent-es.js",
"jsnext:main": "lib/reactUserAgent-es.js",
"umdName": "ReactUserAgent",
"source": "src/index.js",
"private": false,
"files": [
"lib/"
],
"scripts": {
"prepublish": "npm run build",
"build": "rollup -c",
"start": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonstuebe/react-useragent.git"
},
"bugs": {
"url": "https://github.com/jonstuebe/react-useragent/issues"
},
"keywords": [
"react",
"javascript",
"useragent",
"user",
"agent"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^22.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"react": "16.7.0-alpha.0 - next",
"react-dom": "16.7.0-alpha.0 - next",
"rollup": "^0.52.3",
"rollup-plugin-auto-external": "^1.0.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0"
},
"peerDependencies": {
"react": "^16.7.0"
},
"dependencies": {
"mobile-detect": "^1.3.6"
}
}