This repository was archived by the owner on Aug 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "redux-rags",
"version": "1.2.2",
"description": "Redux Reducers, Actions, and Getters. Simplified!",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build --copy-files",
"lint": "eslint src/**",
"lint:watch": "esw -w lib/**",
"prepublish": "npm run build",
"flow": "flow",
"test": "npm run jest",
"jest": "./node_modules/.bin/jest --maxWorkers=2",
"jest:watch": "npm run jest -- --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeSignal/redux-rags.git"
},
"files": [
"build"
],
"keywords": [
"redux"
],
"author": "CodeSignal",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeSignal/redux-rags/issues"
},
"homepage": "https://github.com/CodeSignal/redux-rags#readme",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-flow": "^7.7.4",
"@babel/register": "^7.7.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^28.0.3",
"babel-plugin-transform-imports": "^2.0.0",
"babel-polyfill": "^6.26.0",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-watch": "^8.0.0",
"flow-bin": "^0.182.0",
"jest": "^28.0.3",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.3"
}
}