-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "@fieldwork/redux-auth",
"version": "2.3.0",
"description": "Auth management actions and reducer for Redux and React.",
"repository": {
"type": "git",
"url": "https://github.com/EMT/redux-auth"
},
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && babel src -d dist --ignore **/*.test.js,**/__snapshots__",
"clean": "rm -rf ./dist",
"eslint": "eslint ./src --fix",
"flow": "flow",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"author": "Fieldwork",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@fieldwork/eslint-config-fieldwork": "^1.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"eslint": "^5.5.0",
"eslint-plugin-flowtype": "^2.50.0",
"flow-bin": "^0.80.0",
"jest": "^23.6.0",
"react": "^16.5.0",
"react-redux": "^5.0.7",
"react-test-renderer": "^16.5.1",
"redux": "^4.0.0"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-redux": ">=5.0.0",
"redux": ">=4.0.0"
}
}