-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "redux-on-state-change",
"version": "1.1.0",
"description": "Extremely simple middleware to respond to Redux state changes.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir lib",
"publish": "rimraf lib && npm run build",
"test": "mocha --recursive --compilers js:babel/register -r test/index.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franjohn21/redux-on-state-change.git"
},
"keywords": [
"redux",
"middleware",
"redux-middleware",
"observables",
"state"
],
"author": "Francis John",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "^8.2.1",
"rimraf": "^2.5.2"
}
}