forked from WEACOMRU/react-giphy-select
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.44 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-giphy-select",
"version": "1.0.5",
"description": "A React component for select GIFs on GIPHY.",
"main": "lib/index.js",
"scripts": {
"build": "yarn run build:clean && yarn run build:lib",
"build:lib": "babel src -d lib --ignore test.js",
"build:clean": "rimraf lib",
"lint": "eslint ./",
"version": "yarn run build",
"start": "webpack-dev-server",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"build-docs": "rimraf docs-dist && NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WEACOMRU/react-giphy-select.git"
},
"keywords": [
"react",
"giphy",
"gif"
],
"author": "bashkos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WEACOMRU/react-giphy-select/issues"
},
"homepage": "https://github.com/WEACOMRU/react-giphy-select#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "4",
"css-loader": "^0.28.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"jest": "^20.0.3",
"jest-fetch-mock": "^1.1.1",
"postcss-loader": "^2.0.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.7",
"react-inspector": "^2.0.0",
"react-syntax-highlighter": "^5.6.0",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.5.8",
"react-custom-scrollbars": "^4.1.1",
"react-masonry-component": "^5.0.5"
},
"peerDependencies": {
"react": "^15.5.4"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
}
}