-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.98 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "redux-async-utils",
"description": "Redux utilities to reduce actions boilerplate",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/redux-async-utils.js && NODE_ENV=production webpack src/index.js dist/redux-async-utils.min.js",
"lint": "./node_modules/.bin/eslint src test examples",
"prepublish": "npm run lint && npm run clean && npm run build && npm run build:umd",
"test": "node_modules/.bin/ava --tap test | tnyan",
"test:cov": "node_modules/.bin/nyc node_modules/.bin/ava --verbose test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git cz",
"coverage": "nyc report"
},
"repository": {
"type": "git",
"url": "https://github.com/LucaColonnello/redux-async-utils.git"
},
"keywords": [
"react",
"decorator",
"pubsub"
],
"authors": [
"Luca Colonnello (https://github.com/LucaColonnello)",
"Matteo Ronchi (https://github.com/cef62)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LucaColonnello/redux-async-utils/issues"
},
"homepage": "https://github.com/LucaColonnello/redux-async-utils",
"devDependencies": {
"ava": "0.13.0",
"babel-cli": "6.4.0",
"babel-core": "6.4.0",
"babel-eslint": "6.0.2",
"babel-loader": "6.2.1",
"babel-plugin-object-assign": "1.2.1",
"babel-plugin-transform-flow-strip-types": "6.4.0",
"babel-plugin-transform-inline-environment-variables": "6.3.13",
"babel-plugin-transform-node-env-inline": "6.3.13",
"babel-plugin-transform-object-assign": "6.3.13",
"babel-plugin-transform-undefined-to-void": "6.3.13",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"cz-conventional-changelog": "1.1.5",
"eslint": "1.10.3",
"eslint-config-airbnb": "3.0.2",
"eslint-plugin-react": "3.14.0",
"ghooks": "1.0.3",
"jsdom": "7.2.2",
"nyc": "5.3.0",
"react": "0.14.6",
"react-addons-test-utils": "0.14.6",
"react-dom": "0.14.6",
"redux": "^3.2.1",
"rimraf": "2.5.0",
"semantic-release": "^4.3.5",
"sinon": "1.17.2",
"tap-nyan": "0.0.2",
"validate-commit-msg": "1.0.0",
"watch": "0.17.1",
"webpack": "1.12.10"
},
"dependencies": {
"hoist-non-react-statics": "1.0.3"
},
"peerDependencies": {
"redux": ">=3.0.0"
},
"npmName": "redux-async-utils",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm t",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"nyc": {
"exclude": [
"test",
"coverage",
"test{,-*}.js",
"node_modules",
"lib",
"dist",
"examples"
]
}
}
}