forked from akiran/react-slick
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.21 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
116
117
118
{
"name": "react-slick",
"version": "0.23.1",
"description": " React port of slick carousel",
"main": "./lib",
"files": ["dist", "lib"],
"scripts": {
"start": "gulp server",
"build": "gulp clean && gulp sass && gulp copy && webpack",
"prepublish": "babel ./src --out-dir ./lib && gulp dist",
"test": "eslint src && jest",
"test:watch": "jest --watch",
"lint": "eslint src",
"gen":
"node examples/scripts/generateExampleConfigs.js && node examples/scripts/generateExamples.js && xdg-open docs/jquery.html",
"precommit": "lint-staged"
},
"author": "Kiran Abburi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akiran/react-slick"
},
"keywords": [
"slick",
"carousel",
"Image slider",
"orbit",
"slider",
"react-component"
],
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.28.0",
"deepmerge": "^1.1.0",
"del": "^2.2.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"es5-shim": "^4.5.9",
"eslint": "^3.6.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^6.3.0",
"express": "^4.14.0",
"foundation-apps": "^1.2.0",
"gulp": "^3.9.1",
"gulp-sass": "^3.1.0",
"husky": "^0.14.3",
"jasmine-core": "^2.5.2",
"jest": "^19.0.2",
"jquery": "^3.2.1",
"js-beautify": "^1.7.5",
"json-loader": "^0.5.4",
"lint-staged": "^7.0.3",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"run-sequence": "^1.2.2",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"slick-carousel": "^1.8.1",
"style-loader": "^0.16.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"why-did-you-update": "^0.1.1"
},
"dependencies": {
"classnames": "^2.2.5",
"enquire.js": "^2.1.6",
"json2mq": "^0.2.0",
"lodash.debounce": "^4.0.8",
"resize-observer-polyfill": "^1.5.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.1 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.1 || ^16.0.0"
},
"jest": {
"setupFiles": ["./test-setup.js"],
"testPathIgnorePatterns": [
"/__tests__/scripts.js",
"/__tests__/testUtils.js"
]
},
"lint-staged": {
"*.{js,json,md}": ["prettier --write", "git add"]
},
"npmName": "react-slick",
"npmFileMap": [
{
"basePath": "/dist/",
"files": ["*.js"]
}
],
"bugs": {
"url": "https://github.com/akiran/react-slick/issues"
},
"homepage": "https://github.com/akiran/react-slick",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-slick",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}