-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 968 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
{
"name": "redux-action-sync",
"version": "0.1.0",
"description": "Action synchronization middleware for Redux",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "https://github.com/czak/redux-action-sync.git"
},
"keywords": [
"redux",
"sync",
"persistence"
],
"author": "Łukasz Adamczak (http://czak.pl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/czak/redux-action-sync/issues"
},
"homepage": "https://github.com/czak/redux-action-sync#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"expect": "^1.20.2",
"mocha": "^3.0.2"
},
"dependencies": {}
}