forked from mu29/react-stepper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "react-stepper-horizontal",
"version": "2.0.0",
"description": "Well-designed stepper component for react",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib",
"prepublish": "npm run build",
"example": "webpack -w -d --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mu29/react-stepper.git"
},
"keywords": [
"facebook",
"react",
"component",
"react-component",
"stepper",
"step"
],
"author": "InJung Chung <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mu29/react-stepper/issues"
},
"homepage": "https://github.com/mu29/react-stepper#readme",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.5",
"webpack": "^5.74.0"
},
"engines": {
"node": ">= 16.17.0"
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-tooltip": "^4.2.21"
}
}