-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "gecon",
"version": "2.0.0",
"description": "Generator control library",
"keywords": [
"async",
"flow",
"generator",
"control",
"gecon"
],
"license": "MIT",
"private": false,
"author": "Andrei Shevel <myindydough@gmail.com>",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"files": [
"dist/**/*"
],
"repository": "git@github.com:indy-dough/gecon.git",
"bugs": {
"url": "https://github.com/indy-dough/gecon/issues"
},
"homepage": "https://github.com/indy-dough/gecon#readme",
"scripts": {
"format": "prettier -w .",
"build": "rollup -c",
"prepare": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^9.0.1",
"prettier": "^2.7.1",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.14.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}