forked from sergeysova/redux-symbiote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "redux-symbiote",
"version": "1.1.0",
"description": "Write your actions and reducers without pain",
"main": "lib/index.js",
"scripts": {
"test": "eslint . && nyc ava",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov",
"report": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomixinteractions/redux-symbiote.git"
},
"contributors": [
"Sergey Sova <[email protected]> (https://sergeysova.com)",
"Viacheslav Bereza <[email protected]> (http://betula.co)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/atomixinteractions/redux-symbiote/issues"
},
"keywords": [
"redux",
"flux",
"fsa",
"actions",
"react"
],
"homepage": "https://github.com/atomixinteractions/redux-symbiote#readme",
"dependencies": {},
"devDependencies": {
"@atomix/eslint-config": "^6.1.1",
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint": "^4.18.0",
"nyc": "^11.4.1"
}
}