-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "redux-responder",
"version": "1.1.1",
"description": "Redux without side effects",
"main": "lib/index.js",
"typings": "src/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "mocha --require @babel/register",
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/infuse-us/redux-responder.git"
},
"author": "Jascha Ephraim <[email protected]>",
"license": "MIT",
"keywords": [
"redux",
"responder",
"flux"
],
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@infuse/eslint-config": "^1.3.2",
"babel-eslint": "^10.0.3",
"deep-equal": "^1.0.1",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"mocha": "^6.2.0",
"redux": "^4.0.4"
},
"dependencies": {
"reselect": "^4.0.0"
}
}