-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
100 lines (100 loc) · 3.2 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
100
{
"name": "segmented-control",
"version": "0.2.1",
"description": "💅 A good-lookin' segmented control React component",
"homepage": "https://github.com/lorensr/segmented-control",
"scripts": {
"start": "start-storybook -p 9009",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "sh scripts/prepublish.sh",
"postversion": "git push && git push --follow-tags",
"release": "release patch && echo 'now run npm publish'"
},
"bugs": {
"url": "https://github.com/lorensr/segmented-control/issues"
},
"license": "MIT",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./SegmentedControlWithoutStyles": "./dist/SegmentedControlWithoutStyles.js",
"./SegmentedControl": "./dist/SegmentedControl.js",
"./FormsySegmentedControl": "./dist/FormsySegmentedControl.js"
},
"files": [
"dist"
],
"keywords": [
"react",
"reactjs",
"react-component",
"segmented-control",
"forms",
"input",
"select",
"radio",
"formsy",
"formsy-react",
"formsy-component"
],
"repository": {
"type": "git",
"url": "https://github.com/lorensr/segmented-control.git"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@emotion/react": "^11.10.5",
"@material-ui/core": "^5.0.0-beta.5",
"@storybook/addon-actions": "^6.1.14",
"@storybook/addon-centered": "^5.3.21",
"@storybook/addon-links": "^6.1.14",
"@storybook/addons": "^6.1.14",
"@storybook/react": "^6.1.14",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-lumberjack": "^2.0.0",
"react-scripts": "^4.0.1",
"release": "^6.3.1"
},
"dependencies": {
"create-react-class": "^15.7.0",
"formsy-react": "^2.3.0",
"lodash": "^4.14.1",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.0"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
},
"author": {
"name": "Loren Sands-Ramshaw",
"url": "http://lorensr.me"
}
}