-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.25 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
55
{
"name": "@zedux/core",
"version": "2.0.0-beta.1",
"description": "A high-level, declarative, composable form of Redux",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"author": "Joshua Claunch",
"bugs": {
"url": "https://github.com/Omnistac/zedux/issues"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"README.md"
],
"homepage": "https://omnistac.github.io/zedux/",
"license": "MIT",
"keywords": [
"abstraction",
"beautiful",
"boilerplate",
"easy",
"flux",
"functional",
"immutable",
"management",
"memoized",
"performant",
"reducer",
"redux",
"simple",
"state",
"zedux"
],
"repository": {
"directory": "packages/core",
"type": "git",
"url": "https://github.com/Omnistac/zedux.git"
},
"scripts": {
"build": "../../scripts/build.js",
"lint": "eslint 'src/**/*.ts' && tsc --noEmit",
"prepublishOnly": "yarn build",
"test": "cd ../.. && yarn test packages/core --collectCoverageFrom=packages/core/src/**/*.ts"
},
"sideEffects": false,
"type": "module"
}