-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.49 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
{
"name": "kink",
"version": "0.2.5",
"description": "Kink connects your redux store to your code.",
"main": "index.js",
"repository": "git@github.com:jsbites/kink.git",
"author": "Volkan Özçelik <me@volkan.io> (https://volkan.io/)",
"license": "MIT",
"scripts": {
"test": "bin/test.sh",
"lint": "bin/lint.sh",
"flow": "bin/flow.sh",
"precommit": "bin/precommit.sh"
},
"lint-staged": {
"*.{js,json,css,sass,scss,md}": ["prettier --write", "git add"]
},
"files": ["lib/", "index.js"],
"keywords": [
"byte",
"byte-sized javascript",
"byte-sized",
"bytesized.tv",
"connect",
"demos",
"education",
"helper",
"javascript",
"kink",
"learning",
"podcast",
"react",
"redux",
"screencast",
"store",
"tutorials",
"utility",
"vidcast",
"videocast",
"videos"
],
"bugs": {
"url": "https://github.com/jsbites/kink/issues"
},
"homepage": "https://bytesized.tv/",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^8.2.1",
"delgado": "^0.6.0",
"eslint": "^4.15.0",
"eslint-config-jsbites": "^2.1.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"peerDependencies": {
"delgado": "^0.6.0",
"react": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
}
}