-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/plugin-transform-spread": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@babel/runtime": "^7.23.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.2.1",
"docsify": "^4.13.0",
"docsify-darklight-theme": "^3.2.0",
"jest": "^29.2.1",
"rollup": "^4.9.6",
"typescript": "^4.8.4"
},
"dependencies": {
"js-coroutines": "^2.4.36"
},
"imports": {
"#js-coroutines": {
"node": "js-coroutines",
"import": "./node_modules/js-coroutines/dist/es6/index.js",
"default": "./node_modules/js-coroutines/dist/index.js"
}
},
"name": "generator-collector",
"version": "1.0.0",
"description": "Lazily collect and query generators",
"main": "src/index.mjs",
"type": "module",
"scripts": {
"build": "npx rollup -c rollup.config.js",
"docs": "npx docsify serve docs",
"test": "npx jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slurmulon/generator-collector.git"
},
"keywords": [
"generator",
"lazily",
"coroutine",
"pattern",
"query"
],
"author": "Erik Vavro",
"license": "MIT",
"bugs": {
"url": "https://github.com/slurmulon/generator-collector/issues"
},
"homepage": "https://github.com/slurmulon/generator-collector#readme"
}