-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.49 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
{
"author": "Rocket Station <contact@rstation.io> (https://rstation.io)",
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"Firefox ESR",
"Safari >= 9",
"last 2 iOS versions",
"last 2 ChromeAndroid versions",
"last 2 FirefoxAndroid versions"
],
"contributors": [
"Oleksii Bilous <oleksiibilous@rstation.io> (https://rstation.io)",
"Oleksii Pysanko <oleksiipysanko@rstation.io> (https://rstation.io)"
],
"description": "provides reducer, which is used to process any change of the state, & action creator, which initiates any change of the state",
"devDependencies": {
"@babel/cli": "7",
"@babel/core": "7",
"@babel/preset-env": "7",
"babel-eslint": "10",
"babel-preset-minify": "0.5",
"cross-env": "5",
"eslint": "5",
"eslint-config-prettier": "3",
"eslint-config-standard": "12",
"eslint-plugin-import": "2",
"eslint-plugin-jest": "22",
"eslint-plugin-node": "8",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"jest": "23",
"prettier": "1"
},
"files": [
"build"
],
"license": "MIT",
"main": "build/index.js",
"name": "@rocketstation/redux-action",
"repository": {
"type": "git",
"url": "git+https://github.com/rocketstation/redux-action.git"
},
"scripts": {
"build": "rm -rf build && cross-env NODE_ENV=production babel src -d build --ignore src/**/*.test.js",
"test": "jest src"
},
"version": "2.0.0"
}