1 | {
|
2 | "name": "react-slider",
|
3 | "version": "2.0.6",
|
4 | "description": "Slider component for React",
|
5 | "main": "dist/cjs/index.js",
|
6 | "exports": {
|
7 | ".": {
|
8 | "development": {
|
9 | "import": "./dist/es/dev/index.mjs",
|
10 | "require": "./dist/cjs/dev/index.js"
|
11 | },
|
12 | "production": {
|
13 | "import": "./dist/es/prod/index.mjs",
|
14 | "require": "./dist/cjs/prod/index.js"
|
15 | },
|
16 | "default": {
|
17 | "import": "./dist/es/prod/index.mjs",
|
18 | "require": "./dist/cjs/prod/index.js"
|
19 | }
|
20 | }
|
21 | },
|
22 | "sideEffects": false,
|
23 | "files": [
|
24 | "dist"
|
25 | ],
|
26 | "keywords": [
|
27 | "react-component",
|
28 | "react",
|
29 | "slider",
|
30 | "component"
|
31 | ],
|
32 | "author": "Michał Powaga <michalpowaga13@gmail.com>",
|
33 | "scripts": {
|
34 | "build": "create-react-styleguide script build",
|
35 | "build:watch": "create-react-styleguide script build:watch",
|
36 | "build:styleguide": "create-react-styleguide script build:styleguide",
|
37 | "clean": "create-react-styleguide script clean",
|
38 | "eslint": "create-react-styleguide script eslint",
|
39 | "eslint:fix": "create-react-styleguide script eslint:fix",
|
40 | "start": "create-react-styleguide script start",
|
41 | "test": "create-react-styleguide script test",
|
42 | "test:coverage": "create-react-styleguide script test:coverage",
|
43 | "test:update": "create-react-styleguide script test:update",
|
44 | "test:watch": "create-react-styleguide script test:watch",
|
45 | "prepublishOnly": "create-react-styleguide script prepublishOnly",
|
46 | "predeploy": "npm run build:styleguide",
|
47 | "deploy": "gh-pages -d styleguide",
|
48 | "release": "standard-version",
|
49 | "prepare": "husky install"
|
50 | },
|
51 | "husky": {
|
52 | "hooks": {
|
53 | "pre-commit": "npm run eslint && npm run test"
|
54 | }
|
55 | },
|
56 | "dependencies": {
|
57 | "prop-types": "^15.8.1"
|
58 | },
|
59 | "peerDependencies": {
|
60 | "react": "^16 || ^17 || ^18"
|
61 | },
|
62 | "devDependencies": {
|
63 | "@commitlint/cli": "^17.0.3",
|
64 | "@commitlint/config-conventional": "^17.0.3",
|
65 | "create-react-styleguide": "^8.2.3",
|
66 | "gh-pages": "^3.2.3",
|
67 | "husky": "^8.0.1",
|
68 | "jest-styled-components": "^7.1.1",
|
69 | "react": "^17.0.2",
|
70 | "react-dom": "^17.0.2",
|
71 | "react-test-renderer": "^17.0.2",
|
72 | "standard-version": "^9.5.0",
|
73 | "styled-components": "^5.3.5"
|
74 | },
|
75 | "contributors": [
|
76 | {
|
77 | "name": "Florian Klampfer",
|
78 | "email": "f.klampfer@gmail.com"
|
79 | },
|
80 | {
|
81 | "name": "James Brauman",
|
82 | "email": "james.22au@gmail.com"
|
83 | },
|
84 | {
|
85 | "name": "Brian Stone",
|
86 | "email": "brians@zillowgroup.com"
|
87 | },
|
88 | {
|
89 | "name": "Kris Ellery",
|
90 | "email": "krise@zillowgroup.com"
|
91 | }
|
92 | ],
|
93 | "homepage": "https://github.com/zillow/react-slider",
|
94 | "license": "MIT",
|
95 | "repository": {
|
96 | "type": "git",
|
97 | "url": "https://github.com/zillow/react-slider.git"
|
98 | }
|
99 | }
|