forked from reduxjs/redux-thunk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 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
{
"name": "redux-thunk-fsa",
"version": "4.1.0",
"description": "FSA compliant thunk middleware for Redux.",
"main": "lib/index.js",
"module": "es/index.js",
"types": "src/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"es",
"src",
"dist"
],
"scripts": {
"clean": "rimraf lib dist es",
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"lint": "eslint src test",
"test": "cross-env BABEL_ENV=commonjs mocha --require @babel/register --reporter spec test/*.js",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"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": "cross-env BABEL_ENV=commonjs NODE_ENV=development npx webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production npx webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/redux-thunk.git"
},
"homepage": "https://github.com/makeomatic/redux-thunk",
"keywords": [
"redux",
"thunk",
"middleware",
"redux-middleware",
"flux",
"fsa"
],
"author": "Dan Abramov <[email protected]>",
"contributors": [
"Vitaly Aminev <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-makeomatic": "^5.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-unicorn": "^22.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"redux": "^4",
"rimraf": "^3.0.0",
"typescript": "^4.0.3",
"typings-tester": "^0.3.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}