forked from damian-stratoscale/react-multistep-component
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.59 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
55
56
57
58
59
60
61
62
{
"name": "react-multistep-component2",
"version": "0.0.7",
"description": "A multistep react component",
"main": "dist/dist.js",
"author": "@loverajoel",
"license": "ISC",
"scripts": {
"demos": "webpack-dev-server --progress --colors -d --watch",
"build": "./node_modules/.bin/webpack --config ./webpack.config.production.js --progress --colors",
"test": "karma start",
"test:dev": "npm run test -- --singleRun=false",
"prepublish": "npm run build"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"files": [
"/dist/*"
],
"devDependencies": {
"coveralls": "^2.11.8",
"babelify": "^7.2.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"expect": "^1.15.2",
"extract-text-webpack-plugin": "^1.0.1",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"phantomjs": "^2.1.3",
"react-addons-test-utils": "^0.14.7",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"tags": [
"react",
"multistep",
"wizard"
],
"keywords": [
"react",
"react-component",
"multistep",
"wizard",
"steps"
]
}