This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "redux-symbiote",
"version": "3.4.0",
"description": "Write your actions and reducers without pain",
"main": "lib/index.js",
"scripts": {
"test": "npm run test:lint && npm run test:code",
"test:lint": "eslint .",
"test:code": "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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run test:lint"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,eslintrc}": [
"prettier --write",
"git add"
]
},
"keywords": [
"redux",
"flux",
"fsa",
"actions",
"react",
"act",
"reducer"
],
"homepage": "https://github.com/sergeysova/redux-symbiote#readme",
"dependencies": {
"nanoid": "^2.0.1",
"symbiote-symbol": "^3.0.0"
},
"devDependencies": {
"@atomix/eslint-config": "^7.0.0-next.1",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@commitlint/cli": "^8.3.1",
"@commitlint/config-conventional": "^7.5.0",
"ava": "^1.2.1",
"commitizen": "^4.0.3",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"dtslint": "^0.5.3",
"eslint": "^5.15.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-unicorn": "^7.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"nyc": "^14.1.1",
"prettier": "^1.16.4",
"typescript": "^3.3.3333"
}
}