-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathpackage.json
99 lines (99 loc) · 2.7 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
{
"name": "react-slider",
"version": "2.0.6",
"description": "Slider component for React",
"main": "dist/cjs/index.js",
"exports": {
".": {
"development": {
"import": "./dist/es/dev/index.mjs",
"require": "./dist/cjs/dev/index.js"
},
"production": {
"import": "./dist/es/prod/index.mjs",
"require": "./dist/cjs/prod/index.js"
},
"default": {
"import": "./dist/es/prod/index.mjs",
"require": "./dist/cjs/prod/index.js"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"react-component",
"react",
"slider",
"component"
],
"author": "Michał Powaga <[email protected]>",
"scripts": {
"build": "create-react-styleguide script build",
"build:watch": "create-react-styleguide script build:watch",
"build:styleguide": "create-react-styleguide script build:styleguide",
"clean": "create-react-styleguide script clean",
"eslint": "create-react-styleguide script eslint",
"eslint:fix": "create-react-styleguide script eslint:fix",
"start": "create-react-styleguide script start",
"test": "create-react-styleguide script test",
"test:coverage": "create-react-styleguide script test:coverage",
"test:update": "create-react-styleguide script test:update",
"test:watch": "create-react-styleguide script test:watch",
"prepublishOnly": "create-react-styleguide script prepublishOnly",
"predeploy": "npm run build:styleguide",
"deploy": "gh-pages -d styleguide",
"release": "standard-version",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run eslint && npm run test"
}
},
"dependencies": {
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"create-react-styleguide": "^8.2.3",
"gh-pages": "^3.2.3",
"husky": "^8.0.1",
"jest-styled-components": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"standard-version": "^9.5.0",
"styled-components": "^5.3.5"
},
"contributors": [
{
"name": "Florian Klampfer",
"email": "[email protected]"
},
{
"name": "James Brauman",
"email": "[email protected]"
},
{
"name": "Brian Stone",
"email": "[email protected]"
},
{
"name": "Kris Ellery",
"email": "[email protected]"
}
],
"homepage": "https://github.com/zillow/react-slider",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zillow/react-slider.git"
}
}