-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 2.85 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "three-ducks",
"version": "1.7.0",
"description": "As if Redux was written as plugins",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/streamich/three-ducks.git"
},
"scripts": {
"start": "npm run storybook",
"clean": "rimraf lib",
"test": "standard && jest",
"build": "npm run clean && babel src --out-dir lib --ignore __tests__",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"precommit": "lint-staged",
"semantic-release": "semantic-release",
"lint": "standard",
"prettier": "standard --fix",
"storybook": "NODE_ENV=production start-storybook -p 6006",
"build-storybook": "build-storybook",
"bench": "NODE_ENV=production babel-node benchmark/index.js",
"travis-deploy-once": "travis-deploy-once"
},
"lint-staged": {
"**/*.js": [
"npm run prettier",
"git add"
]
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"symbol-observable": "^1.2.0"
},
"peerDependencies": {
"rxjs": "^6.2.1"
},
"devDependencies": {
"husky": "0.14.3",
"jest": "22.4.4",
"lint-staged": "7.2.0",
"rimraf": "2.6.2",
"git-cz": "^1.7.0",
"semantic-release": "^15.5.2",
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/npm": "^3.3.1",
"@semantic-release/git": "^5.0.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2016": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-stage-0": "6.24.1",
"standard": "11.0.1",
"redux": "3.7.2",
"react-redux": "5.0.7",
"react": "16.4.0",
"react-dom": "16.4.0",
"@storybook/react": "3.4.7",
"@storybook/addon-actions": "3.4.7",
"@storybook/addon-links": "3.4.7",
"@storybook/addons": "3.4.7",
"babel-runtime": "6.26.0",
"benchmark": "2.1.4",
"travis-deploy-once": "4.4.1",
"rxjs": "^6.2.1"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"jest": {
"transformIgnorePatterns": [],
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?)$",
"setupFiles": [
"./src/__tests__/setup.js"
],
"moduleFileExtensions": [
"js",
"jsx"
]
},
"babel": {
"presets": [
"es2015",
"es2016",
"es2017",
"stage-0",
"flow"
],
"comments": false
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"keywords": [
"three-ducks",
"tree",
"3",
"ducks",
"redux",
"flux",
"state",
"management",
"container"
]
}