forked from godaddy/react-img-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 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
{
"name": "react-img-carousel",
"version": "1.5.4",
"description": "Provides an image carousel React component.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:godaddy/react-img-carousel"
},
"author": "GoDaddy Operating Company, LLC",
"contributors": [
"Chris Hinrichs <[email protected]>"
],
"license": "MIT",
"keywords": [
"react",
"carousel"
],
"bugs": {
"url": "https://github.com/godaddy/react-img-carousel/issues"
},
"homepage": "https://github.com/godaddy/react-img-carousel#readme",
"scripts": {
"clean": "rimraf ./lib",
"prebuild": "npm run clean",
"build": "babel src -d lib && lessc src/carousel.less lib/carousel.css && postcss --no-map --use autoprefixer -o lib/carousel.css lib/carousel.css",
"eslint": "eslint-godaddy-react src/ test/",
"unit": "gulp unit-coverage",
"pretest": "npm run eslint",
"test": "npm run unit",
"prepublish": "npm run test && npm run build",
"storybook": "start-storybook -c ./node_modules/@exemplar/storybook-react"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"class-autobind": "^0.1.0",
"classnames": "^2.2.6",
"lodash.inrange": "^3.3.6",
"lodash.merge": "^4.6.2",
"lodash.nth": "^4.11.2",
"ms": "^0.7.2",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@exemplar/storybook-react": "^1.1.2",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/react": "^5.2.8",
"autoprefixer": "^7.2.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-godaddy-react": "^2.2.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-react": "^7.14.3",
"godaddy-test-tools": "^9.2.0",
"gulp": "3.9.0",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.12.0",
"less": "^2.7.3",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"postcss-cli": "^5.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^2.7.1",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0",
"style-loader": "^0.20.3",
"webpack": "^3.12.0"
}
}