-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "react-browser-support",
"version": "0.0.2",
"description": "A React component indicating whether or not your application supports the detected browser ( & semantic version ).",
"main": "lib/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "webpack -p --colors -w",
"deploy": "npm unlink && npm publish",
"prebuild": "./node_modules/.bin/babel -d lib/ src/ --no-comments --copy-files",
"build": "webpack -p",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bilo-io/react-browser-support.git"
},
"keywords": [
"react",
"browser",
"support",
"semver",
"compatibility"
],
"author": "Bilo Lwabona",
"license": "ISC",
"bugs": {
"url": "https://github.com/bilo-io/react-browser-support/issues"
},
"homepage": "https://github.com/bilo-io/react-browser-support#readme",
"devDependencies": {
"axios": "^0.16.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"detect-browser": "^2.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"semver-compare": "^1.0.0"
}
}