forked from nickpisacane/react-dynamic-swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.12 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
{
"name": "react-dynamic-swiper",
"version": "2.0.1",
"description": "React wrapper for IDangerous Swiper that auto-magically updates slides, and reinitializes.",
"main": "lib",
"scripts": {
"test": "karma start",
"test:watch": "WATCH=true karma start",
"build-lib": "./node_modules/.bin/babel src --out-dir lib && cp src/styles.css lib",
"build-docs": "npm run build-lib && rm -rf docs && mkdir docs && cd demo && npm install && npm run build && mv build/* ../docs && rm -rf build",
"prepublish": "npm run build-lib",
"copy-styles": "node scripts/copy-swiper-styles.js",
"lint": "standard",
"lint-fix": "standard --fix"
},
"keywords": [
"swiper",
"react swiper",
"idangerous swiper"
],
"author": "Nick Pisacane <pisacanen@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/nickpisacane/react-dynamic-swiper"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.26.0",
"chai": "^3.5.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"karma": "^2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-nyan-reporter": "^0.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.2",
"mocha": "^3.2.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"standard": "^10.0.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13"
},
"dependencies": {
"classnames": "^2.2.5",
"deep-equal": "^1.0.1",
"lodash.omit": "^4.5.0",
"prop-types": "^15.5.10",
"swiper": "4.2.0"
},
"peerDependencies": {
"react": "^16.5.2"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"test",
"docs",
"demo",
"scripts",
"lib",
"karma.conf.js",
"webpack.config.js"
]
}
}