forked from srdjan/react-multistep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "react-multistep",
"version": "2.2.12",
"description": "Responsive ReactJS multistep form component",
"main": "src/index.js",
"license": "MIT",
"author": {
"name": "@djidja8",
"email": "[email protected]",
"url": "https://github.com/srdjan"
},
"keywords": [
"react, reactjs, responsive, component"
],
"repository": {
"type": "git",
"url": "https://github.com/srdjan/react-multistep"
},
"homepage": "https://github.com/srdjan/react-multistep",
"bugs": {
"url": "https://github.com/srdjan/react-multistep/issues"
},
"dependencies": {
"react": "^15.6.x",
"react-dom": "^15.6.x"
},
"devDependencies": {
"babel": "^6.x.x",
"babel-cli": "^6.x.x",
"babel-plugin-transform-react-jsx": "^6.x.x",
"babel-preset-es2015": "^6.x.x",
"babel-preset-es2017": "^6.x.x",
"babel-preset-react": "^6.x.x",
"babelify": "^7.3.0",
"browserify": "^14.4.x",
"mocha": "^3.2.x"
},
"scripts": {
"build": "browserify ./example/app/app.js -o ./example/app/bundle.js",
"test": "todo... mocha"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2017"
]
}
]
]
}
}