-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1.91 KB
/
package.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.91 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
{
"name": "@georapbox/redux-call-api-middleware",
"version": "1.2.0",
"description": "Redux middleware to perform api calls reducing action creators boilerplate",
"main": "lib/callAPIMiddleware.js",
"files": [
"src/",
"dist/",
"lib/"
],
"scripts": {
"test": "cross-env NODE_ENV=test mocha --require @babel/register --colors ./test/*.spec.js",
"coverage": "nyc --reporter=text --reporter=lcov npm test",
"lint": "eslint src/**/*.js",
"build:umdmin": "webpack --mode=production --output-library-target=umd",
"build:umd": "webpack --mode=development --output-library-target=umd",
"build:commonjs": "webpack --mode=development --output-library-target=commonjs2",
"build": "npm-run-all build:*",
"dev:umd": "webpack --progress --colors --watch --mode=development --output-library-target=umd",
"dev:commonjs": "webpack --progress --colors --watch --mode=development --output-library-target=commonjs2",
"dev": "npm-run-all --parallel dev:*",
"prepublishOnly": "npm-run-all test build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georapbox/redux-call-api-middleware.git"
},
"keywords": [],
"author": "George Raptis <georapbox@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/georapbox/redux-call-api-middleware/issues"
},
"homepage": "https://github.com/georapbox/redux-call-api-middleware#readme",
"devDependencies": {
"@babel/core": "~7.2.0",
"@babel/preset-env": "~7.2.0",
"@babel/plugin-proposal-object-rest-spread": "~7.2.0",
"@babel/register": "~7.0.0",
"babel-loader": "~8.0.4",
"chai": "~4.2.0",
"cross-env": "~5.2.0",
"eslint": "~5.9.0",
"eslint-loader": "~2.1.1",
"mocha": "~5.2.0",
"npm-run-all": "~4.1.5",
"nyc": "~13.1.0",
"sinon": "~7.1.1",
"sinon-chai": "~3.3.0",
"webpack": "~4.27.0",
"webpack-cli": "~3.1.2",
"yargs": "~12.0.5"
}
}