-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "@kapost/react-component-slider",
"version": "1.0.5",
"description": "Responsive React component slider to help with overflowing, horizontally-oriented components",
"main": "index.js",
"repository": "https://github.com/kapost/react-component-slider",
"author": "Justin Hundley",
"license": "MIT",
"private": false,
"keywords": [
"slider",
"component",
"react",
"horizontal",
"overflow",
"scrolling",
"resize",
"resizing"
],
"bugs": {
"url": "https://github.com/kapost/react-component-slider/issues"
},
"files": [
"index.js",
"yarn.lock",
"lib/stylesheets/*.css"
],
"scripts": {
"build": "babel modules/componentSlider.jsx --out-file index.js && node-sass lib/stylesheets/ -o lib/stylesheets/",
"clean": "rm -f index.js && rm -f lib/stylesheets/*.css",
"prepublish": "yarn run clean && yarn run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"node-sass": "^4.9.0",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": ">=15"
}
}