-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 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
56
57
{
"name": "@drawbotics/entman",
"version": "2.0.0",
"description": "A manager of normalizr entities for Redux",
"author": "Lorenzo Ruiz <lars.bs@hotmail.com>",
"type": "module",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"exports": {
".": {
"import": "./lib/index.esm.js",
"require": "./lib/index.cjs.js",
"default": "./lib/index.cjs.js"
}
},
"types": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"dist"
],
"scripts": {
"clean": "rimraf lib/ dist/",
"lint": "eslint src/ test/",
"build": "npm run clean && rollup -c && cp src/index.d.ts lib/index.d.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"start": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Drawbotics/entman.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"redux": "^3.5.2 || ^4.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16",
"@rollup/plugin-terser": "^1.0.0",
"deep-freeze": "0.0.1",
"eslint": "^8.57.0",
"jest": "^30",
"redux": "^3.5.2",
"rimraf": "^5.0.0",
"rollup": "^4"
},
"dependencies": {
"normalizr": "^3.2.1",
"redux-batched-actions": "^0.5.0"
}
}