This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.32 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
{
"name": "effector-reeffect",
"version": "3.0.0",
"description": "Concurrent effects for Effector",
"author": "Victor Didenko <[email protected]> (https://yumaa.name)",
"contributors": [
"Alexander Khoroshikh <[email protected]>",
"Sergey Sova <[email protected]> (https://sova.dev)"
],
"license": "MIT",
"keywords": [
"effector",
"effects",
"side effects"
],
"scripts": {
"dev": "ts-node src/index.ts",
"test": "jest",
"build": "rm -rf pkg/ && pika build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json && yarn spell",
"spell": "yaspeller .",
"release": "pika publish",
"version": "yarn build",
"size": "size-limit"
},
"size-limit": [
{
"path": "pkg/dist-web/index.js",
"limit": "1935 B"
},
{
"path": "pkg/dist-node/index.js",
"limit": "1907 B"
}
],
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"pika-plugin-package.json",
{
"+author": "^",
"*files": [
"-bin/"
],
"-dependencies": {},
"-devDependencies": {}
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yumauri/effector-reeffect"
},
"bugs": {
"url": "https://github.com/yumauri/effector-reeffect/issues"
},
"homepage": "https://github.com/yumauri/effector-reeffect#readme",
"dependencies": {},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@size-limit/preset-small-lib": "^4.9.1",
"@types/jest": "^26.0.19",
"effector": "^22.1.1",
"jest": "^26.6.3",
"pika-plugin-package.json": "^1.0.2",
"prettier": "^2.2.1",
"size-limit": "^4.9.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-security": "^1.16.0",
"tslint-config-standard-plus": "^2.3.0",
"typescript": "^4.1.3",
"yaspeller": "^7.0.0"
},
"peerDependencies": {
"effector": "^22.0.0"
},
"engines": {
"node": ">=12.13.0"
}
}