forked from mu29/react-stepper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "react-stepper-horizontal",
"version": "1.0.11",
"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": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"webpack": "^1.13.2"
},
"engines": {
"node": ">= 5.11.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}