-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "@github1/redux-modules",
"private": false,
"version": "0.4.3",
"description": "An implementation of the [redux modules](https://github.com/erikras/ducks-modular-redux) pattern to modularize redux reducers, middleware and action creators",
"main": "dist/es5/index.js",
"types": "dist/es5/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"build": "build-tools-build-lib",
"test": "build-tools test --coverage",
"test:watch": "build-tools test --watch --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "John Collier <john.collier4@gmail.com>",
"license": "MIT",
"dependencies": {
"redux-thunk": "2.3.0",
"ts-expect": "1.3.0"
},
"devDependencies": {
"@github1/build-tools": "0.4.46",
"redux": "4.0.5",
"redux-immutable-state-invariant": "2.1.0"
},
"peerDependencies": {
"redux": ">=4.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/github1/redux-modules"
}
}