-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.78 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.78 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-bootstrap-wizard",
"version": "0.0.9",
"description": "A react component package that allows you to split a complicated flow or a complicated form in multiple steps.",
"main": "dist/index.js",
"scripts": {
"build-css": "node-sass-chokidar ./dist/react-wizard.scss -o dist/",
"build": "mkdir -p dist && babel index.js -o dist/index.js && npm run build-css"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-logical-assignment-operators",
"@babel/plugin-proposal-optional-chaining",
[
"@babel/plugin-proposal-pipeline-operator",
{
"proposal": "minimal"
}
],
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-do-expressions",
"@babel/plugin-proposal-function-bind"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/creativetimofficial/react-wizard.git"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.1",
"@babel/plugin-proposal-do-expressions": "7.12.1",
"@babel/plugin-proposal-export-default-from": "7.12.1",
"@babel/plugin-proposal-export-namespace-from": "7.12.1",
"@babel/plugin-proposal-function-bind": "7.12.1",
"@babel/plugin-proposal-function-sent": "7.12.1",
"@babel/plugin-proposal-json-strings": "7.12.1",
"@babel/plugin-proposal-logical-assignment-operators": "7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1",
"@babel/plugin-proposal-numeric-separator": "7.12.7",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/plugin-proposal-pipeline-operator": "7.12.1",
"@babel/plugin-proposal-throw-expressions": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.12.10",
"@babel/preset-react": "7.12.10",
"node-sass-chokidar": "1.5.0"
},
"peerDependencies": {
"react": "17.x.x",
"reactstrap": "8.x.x",
"prop-types": "15.x.x",
"classnames": "2.x.x"
},
"keywords": [
"react",
"component",
"react-component",
"reactstrap",
"reactstrap-component",
"wizard",
"react-wizard",
"form",
"form-wizard",
"bootstrap",
"bootstrap4",
"webdesign",
"reactjs",
"responsive",
"bootstrap-wizard",
"bootstrap-form-wizard",
"reactstrap-wizard"
],
"author": "Creative Tim <hello@creative-tim.com> (https://www.creative-tim.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/creativetimofficial/react-bootstrap-wizard/issues"
},
"homepage": "https://github.com/creativetimofficial/react-bootstrap-wizard#readme"
}