-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
85 lines (85 loc) · 1.55 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
{
"name": "redux-cycles",
"version": "0.4.1",
"description": "Bring functional reactive programming to Redux using Cycle.js",
"typings": "index.d.ts",
"main": "dist",
"files": [
"dist",
"index.d.ts"
],
"repository": "https://github.com/cyclejs-community/redux-cycles",
"contributors": [
{
"name": "Luca Matteis"
},
{
"name": "Nick Balestra"
},
{
"name": "Gosha Arinich"
}
],
"scripts": {
"eslint": "eslint --fix src/ test/",
"test": "npm run build && npm run eslint && jest",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"jest": {
"testPathIgnorePatterns": [
"/example"
]
},
"license": "MIT",
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
},
"dependencies": {
"@cycle/run": "*"
},
"peerDependencies": {
"xstream": "*"
},
"devDependencies": {
"@cycle/rxjs-run": "^4.1.0",
"rxjs": "^5.2.0",
"babel-cli": "^6.18.0",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.15.0",
"jest": "^18.1.0",
"redux": "^3.6.0"
}
}