This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.74 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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "redux-execute",
"version": "2.0.1",
"description": "Another way with thunk in redux",
"repository": {
"type": "git",
"url": "git+https://github.com/sergeysova/redux-execute.git"
},
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es",
"src",
"dist"
],
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib dist es",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov",
"report": "nyc report --reporter=text-lcov | coveralls",
"test:code": "BABEL_ENV=commonjs nyc ava",
"test:lint": "eslint .",
"test": "npm run test:lint && npm run test:code",
"prettier": "prettier './**/**/**.{json,js,eslintrc}' --write"
},
"author": "Sergey Sova <[email protected]> (https://sergeysova.com)",
"keywords": [
"redux",
"thunk",
"middleware",
"redux-middleware",
"flux",
"action",
"command",
"effect"
],
"bugs": {
"url": "https://github.com/sergeysova/redux-execute/issues"
},
"homepage": "https://github.com/sergeysova/redux-execute#readme",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:lint"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json, eslintrc}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@atomix/eslint-config": "^6.2.0",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.4",
"babel-plugin-check-es2015-constants": "^6.6.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.6.5",
"babel-plugin-transform-es2015-block-scoping": "^6.6.5",
"babel-plugin-transform-es2015-classes": "^6.6.5",
"babel-plugin-transform-es2015-computed-properties": "^6.6.5",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-for-of": "^6.6.0",
"babel-plugin-transform-es2015-function-name": "^6.5.0",
"babel-plugin-transform-es2015-literals": "^6.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.6.5",
"babel-plugin-transform-es2015-object-super": "^6.6.5",
"babel-plugin-transform-es2015-parameters": "^6.6.5",
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-es2015-sticky-regex": "^6.5.0",
"babel-plugin-transform-es2015-template-literals": "^6.6.5",
"babel-plugin-transform-es2015-unicode-regex": "^6.5.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"nyc": "^12.0.2",
"prettier": "^1.16.3",
"redux": "^4.0.0",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8"
},
"peerDependencies": {
"redux": "^4.0.0"
},
"ava": {
"require": [
"babel-register"
]
}
}