-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 KB
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
{
"name": "react-paging-indicators",
"version": "0.1.3",
"license": "MIT",
"description": "Generic React paging indicators that you can use in carousels, rotators, slideshows and more!",
"repository": "ryanhefner/react-paging-indicators",
"author": "Ryan Hefner <hi@ryanhefner.com> (https://www.ryanhefner.com)",
"files": [
"BarsIndicator.js",
"CustomIndicator.js",
"DotsIndicator.js",
"es",
"index.js",
"pagingIndicator.js",
"src",
"umd"
],
"directories": {
"lib": "/src"
},
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rm -f index.js && rm -f BarsIndicator.js && rm -f CustomIndicator.js && rm -f DotsIndicator.js && rm -f pagingIndicator.js && rm -rf es && rm -rf umd",
"prebuild": "npm run clean",
"build": "node ./tools/build.js",
"watch": "babel ./src -d . --ignore __tests__ --watch",
"prepare": "npm run build",
"prepublishOnly": "node ./tools/build.js",
"push-release": "git push origin master && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"dependencies": {
"clean-react-props": "^0.1.3",
"lomit": "^0.1.1",
"prop-types": "^15.5.10",
"react-indicators": "^0.3.2",
"react-timer-wrapper": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"gzip-size": "^4.1.0",
"jest": "^22.4.2",
"pretty-bytes": "^4.0.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.1",
"rollup": "^0.56.4",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "^4.3.1"
},
"keywords": [
"react",
"react-component",
"indicators",
"paging",
"pagination",
"carousel",
"rotator",
"slideshow",
"react-indicators",
"react-canvas-wrapper",
"react-rotator",
"react-timer-wrapper"
]
}