-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-redux-wizard",
"version": "0.2.0",
"description": "A simple wizard for React",
"main": "dist/index.js",
"jsnext:main": "dist/index.es",
"entry": "src/index.js",
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-push": "npm test"
}
},
"standard": {
"parser": "babel-eslint",
"globals": [
"jest",
"test",
"expect"
]
},
"directories": {
"src": "src/**/*",
"test": "src/*"
},
"scripts": {
"test": "npm run -s test:lint && npm run -s test:unit",
"test:lint": "flow && standard $npm_package_directories_src | snazzy",
"test:unit": "jest $npm_package_directories_test",
"build": "rollup -c",
"push": "git push --follow-tags origin master",
"release": "npm test && npm run build && standard-version && npm run push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebinsua/react-redux-wizard.git"
},
"keywords": [
"redux",
"react",
"wizard",
"forms",
"steps",
"duck",
"simple"
],
"author": "Seb Insua <me@sebinsua.com>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/sebinsua/react-redux-wizard/issues"
},
"homepage": "https://github.com/sebinsua/react-redux-wizard#readme",
"peerDependencies": {
"react": "*",
"react-redux": "*",
"redux": "*"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"json-predicate": "^0.9.5"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.13.0",
"camelcase": "^4.0.0",
"enzyme": "^2.6.0",
"flow-bin": "^0.36.0",
"ghooks": "^1.3.2",
"jest": "^17.0.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"snazzy": "^5.0.0",
"standard": "^8.6.0",
"standard-version": "^4.0.0",
"validate-commit-msg": "^2.8.2"
}
}