This repository has been archived by the owner on Sep 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.6 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
{
"name": "@proc7ts/fun-events",
"version": "10.5.3",
"description": "Functional event processor",
"keywords": [
"dom-events",
"event",
"events",
"event-receiver",
"event-sender",
"event-processor",
"reactive-events"
],
"homepage": "https://github.com/proc7ts/fun-events",
"repository": {
"type": "git",
"url": "ssh://git@github.com:proc7ts/fun-events.git"
},
"license": "MIT",
"author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
"bugs": {
"url": "https://github.com/proc7ts/fun-events/issues"
},
"type": "module",
"types": "./dist/fun-events.d.ts",
"typesVersions": {
"*": {
"call-thru": [
"./dist/fun-events.call-thru.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/fun-events.d.ts",
"default": "./dist/fun-events.js"
},
"./call-thru": {
"types": "./dist/fun-events.call-thru.d.ts",
"default": "./dist/fun-events.call-thru.js"
}
},
"sideEffects": false,
"peerDependencies": {
"@proc7ts/call-thru": "^4.4.1"
},
"peerDependenciesMeta": {
"@proc7ts/call-thru": {
"optional": true
}
},
"dependencies": {
"@proc7ts/primitives": "^3.0.2",
"@proc7ts/supply": "^1.2.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@proc7ts/call-thru": "^4.4.1",
"@run-z/eslint-config": "^3.5.0",
"@run-z/prettier-config": "^2.0.0",
"@run-z/project-config": "^0.20.0",
"@swc/core": "^1.3.85",
"@swc/jest": "^0.2.29",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-plugin-jest": "^27.4.0",
"gh-pages": "^6.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock": "^29.7.0",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"rollup": "^3.29.2",
"run-z": "2.0.0-bootstrap",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.1",
"typescript": "~5.2.2"
},
"scripts": {
"all": "run-z build,lint,test",
"bootstrap": "build-z",
"build": "run-z +z bootstrap",
"ci:all": "run-z all +test/--ci/--runInBand",
"clean": "run-z +z --then clean-z",
"doc": "run-z +z --then typedoc",
"doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles",
"format": "run-z +z --then prettier-eslint --write --include-dot-files \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
"lint": "run-z +z --then eslint .",
"test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z",
"z": "run-z +cmd:build-z,+cmd:typedoc,+cmd:eslint,+cmd:test-z"
}
}