-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "redux-flash",
"version": "2.0.9",
"description": "Redux action creators for displaying flash messages",
"main": "lib/index.js",
"scripts": {
"start": "yarn run build:development",
"build": "mkdir -p lib && babel src --out-dir lib --no-comments --minified",
"build:development": "mkdir -p lib && babel src --watch --out-dir lib",
"clean": "rm -rf lib",
"lint": "eslint src",
"prepublish": "yarn run lint && yarn run clean && yarn run build",
"test": "jest",
"size": "yarn build && size-limit",
"test:coverage": "jest --coverage"
},
"repository": "launchpadlab/redux-flash",
"keywords": [
"redux",
"flash",
"message",
"flash message",
"alert"
],
"author": "dpikt",
"license": "MIT",
"files": [
"README.md",
"LICENSE.md",
"lib/"
],
"devDependencies": {
"@babel/eslint-parser": "^7.22.6",
"@launchpadlab/babel-preset": "^2.1.0",
"@size-limit/file": "^8.2.6",
"@size-limit/webpack": "^8.2.6",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^29.5.0",
"redux": "^5.0.1",
"redux-mock-store": "^1.3.0",
"size-limit": "^8.2.6"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"prop-types": "^15.6.1",
"redux-actions": "^2.6.5",
"uuid": "^9.0.0"
},
"peerDependencies": {
"redux": "^4.0.0 || ^3.0.0 || ^5.0.0"
}
}