forked from alexeyraspopov/react-coroutine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "react-coroutine",
"version": "1.0.3",
"description": "React Components as Coroutines",
"main": "lib/Coroutine.js",
"jsnext:main": "modules/Coroutine.js",
"scripts": {
"test": "jest",
"prepublish": "rollup --format cjs --config rollup.config.js modules/Coroutine.js > lib/Coroutine.js"
},
"homepage": "https://react-coroutine.js.org/",
"repository": "alexeyraspopov/react-coroutine",
"keywords": [
"async",
"react",
"component",
"container",
"coroutine",
"generator",
"stateful",
"iterator"
],
"author": "Alexey Raspopov",
"license": "MIT",
"dependencies": {
"react": "15.x",
"shallowequal": "~0.2.2"
},
"devDependencies": {
"babel-cli": "6.x",
"babel-core": "6.x",
"babel-jest": "15.x",
"babel-plugin-external-helpers": "6.x",
"babel-polyfill": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-es2017": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-3": "6.x",
"jest-cli": "15.x",
"react-test-renderer": "15.x",
"rollup": "0.41.x",
"rollup-plugin-babel": "2.x"
}
}