forked from srdjan/react-multistep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
{
"name": "react-multistep",
"version": "2.0.0",
"description": "Responsive ReactJS multistep form component",
"main": "src/index.js",
"license": "MIT",
"author": {
"name": "@djidja8",
"email": "srdjan@timok.com",
"url": "https://github.com/https://github.com/Srdjan"
},
"dependencies": {
"babel-preset-react": "^6.5.0",
"react": "^0.14.8",
"react-dom": "^15.0.1"
},
"scripts": {
"compile": "babel ./example/app/app.js -o ./example/app/bundle.js",
"build": "browserify ./example/app/app.js -o ./example/app/bundle.js",
"test": "mocha"
},
"keywords": [
"reactjs"
],
"repository": {
"type": "git",
"url": "git://github.com/https://github.com/Srdjan/react-multistep.git"
},
"homepage": "https://github.com/https://github.com/Srdjan/react-multistep",
"bugs": {
"url": "https://github.com/https://github.com/Srdjan/react-multistep/issues"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-plugin-transform-react-jsx": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"mocha": "^2.3.4",
"react": "^0.14.8",
"react-dom": "^0.14.8"
},
"style": "assets/css/prog-tracker.css",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}