forked from ItsMrAkhil/react-styled-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.29 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-styled-carousel",
"version": "0.5.1",
"description": "React styled-components carousel. No css is needed, fully configurable, SSR supported. Theming supported.",
"main": "build/components/Slider.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --color --config webpack.config.dev.js",
"build": "rimraf build && cross-env NODE_ENV=production babel src --ignore '**/*__tests__*/**, **/*Root.js, **/*example.js' -d build",
"test": "cross-env NODE_ENV=test jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItsMrAkhil/react-styled-carousel.git"
},
"keywords": [
"styled-components",
"carousel",
"react-carousel"
],
"author": "Akhil Pentamsetti",
"license": "MIT",
"bugs": {
"url": "https://github.com/ItsMrAkhil/react-styled-carousel/issues"
},
"homepage": "https://github.com/ItsMrAkhil/react-styled-carousel#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-register": "^6.26.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"css-loader": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-enzyme": "^7.0.1",
"jest-styled-components": "^6.3.1",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0-rc.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"react": "^16.2.0",
"styled-components": "^4.1.3"
},
"peerDependencies": {
"react": "^16.2.0",
"styled-components": "^3.1.6"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/build/**",
"!webpack.config.dev.js",
"!**/coverage/**",
"!setupJest.js",
"!**/Root.js",
"!**/example.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/setupJest.js"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"react/jsx-filename-extension": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default-member": 0,
"import/no-named-as-default": 0,
"no-confusing-arrow": 0,
"max-len": 0
},
"globals": {
"it": true,
"describe": true,
"shallow": true,
"expect": true,
"mount": true,
"window": true
}
}
}