forked from sergeysova/redux-symbiote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "redux-symbiote",
"version": "3.0.1",
"description": "Write your actions and reducers without pain",
"main": "lib/index.js",
"scripts": {
"test": "eslint . && nyc ava",
"--types": "rm -rf node_modules && npm i -g dtslint && dtslint types",
"types": "dtslint types",
"build": "babel ./src -d ./lib",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov",
"report": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build"
},
"types": "types",
"files": [
"lib",
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sergeysova/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/sergeysova/redux-symbiote/issues"
},
"keywords": [
"redux",
"flux",
"fsa",
"actions",
"react",
"act",
"reducer"
],
"homepage": "https://github.com/sergeysova/redux-symbiote#readme",
"dependencies": {
"symbiote-symbol": "^1.1.0"
},
"devDependencies": {
"@atomix/eslint-config": "^6.4.0",
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"dtslint": "^0.3.0",
"eslint": "^4.19.1",
"nyc": "^13.0.1"
}
}