-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.71 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
{
"name": "@intactile/redux-normalized-module",
"version": "0.3.1",
"description": "A library for generating a redux normalized module",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"test:cover": "jest --coverage --collectCoverageFrom=src/**/*.js",
"test:watch": "jest --watch",
"lint": "eslint --max-warnings 0 .",
"compile": "babel src --out-dir dist",
"build": "yarn check --integrity && npm run clean && npm run lint && npm run compile",
"build:ci": "npm run build && npm run test:cover",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intactile/redux-normalized-module.git"
},
"keywords": [
"redux"
],
"author": "Intactile Design",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/intactile/redux-normalized-module/issues"
},
"homepage": "https://github.com/intactile/redux-normalized-module#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"redux": "^4.2.0",
"regenerator-runtime": "^0.13.11",
"rimraf": "^3.0.2"
},
"dependencies": {
"@intactile/redux-utils": "^0.1.0",
"invariant": "^2.2.4",
"lodash.constant": "^3.0.0",
"lodash.groupby": "^4.6.0",
"lodash.mapvalues": "^4.6.0",
"lodash.noop": "^3.0.1"
}
}