-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
154 lines (154 loc) · 4 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "ix",
"private": true,
"version": "7.0.0",
"type": "module",
"description": "The Interactive Extensions for JavaScript",
"scripts": {
"lerna": "lerna",
"commit": "git-cz",
"start": "gulp",
"test": "gulp test",
"build": "gulp build",
"clean": "gulp clean",
"debug": "gulp debug",
"lint": "run-p lint:src lint:spec",
"release": "./npm-release.sh",
"doc": "del-cli ./doc && typedoc",
"postinstall": "patch-package --patch-dir ./patches",
"commitmsg": "validate-commit-msg",
"test:coverage": "gulp test -t src --coverage",
"test:bundle": "gulp bundle",
"lint:ci": "eslint src spec",
"lint:src": "eslint --fix src",
"lint:spec": "eslint --fix spec",
"prepublishOnly": "echo \"Error: do 'yarn release' instead of 'npm publish'\" && exit 1"
},
"author": "Matthew Podwysocki <[email protected]>",
"homepage": "https://github.com/ReactiveX/IxJS#readme",
"bugs": {
"url": "https://github.com/ReactiveX/IxJS/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReactiveX/IxJS.git"
},
"license": "MIT",
"keywords": [
"Iterator",
"Iterable",
"Promise",
"Async",
"AsyncIterable",
"AsyncIterator"
],
"files": [
"targets",
"LICENSE",
"readme.md",
"CHANGELOG.md"
],
"dependencies": {
"@types/node": ">=13.7.4",
"tslib": "^2.6.2"
},
"devDependencies": {
"@openpgp/web-stream-tools": "0.0.13",
"@rollup/plugin-alias": "5.1.0",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/stream": "3.0.1",
"@swc/core": "1.6.7",
"@swc/helpers": ">=0.5.2",
"@types/glob": "8.1.0",
"@types/jest": "29.5.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"abortcontroller-polyfill": "1.4.0",
"async-done": "2.0.0",
"command-line-args": "5.1.1",
"commitizen": "4.0.3",
"conventional-changelog": "3.1.18",
"conventional-changelog-angular": "5.0.6",
"conventional-changelog-cli": "2.0.31",
"conventional-github-releaser": "3.1.3",
"cz-conventional-changelog": "3.1.0",
"del": "7.1.0",
"del-cli": "5.1.0",
"esbuild": "0.23.0",
"esbuild-plugin-alias": "0.2.1",
"eslint": "8.52.0",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-unicorn": "49.0.0",
"glob": "10.3.10",
"google-closure-compiler": "20240317.0.0",
"gulp": "4.0.2",
"gulp-esbuild": "0.12.1",
"gulp-json-transform": "0.5.0",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.4",
"gulp-sourcemaps": "3.0.0",
"gulp-terser": "2.1.0",
"gulp-typescript": "5.0.1",
"gulp-vinyl-size": "1.1.4",
"jest": "29.6.2",
"jest-silent-reporter": "0.5.0",
"lerna": "3.20.2",
"lint-staged": "10.0.7",
"mkdirp": "3.0.1",
"npm-run-all": "4.1.5",
"patch-package": "6.2.0",
"postinstall-postinstall": "2.0.0",
"pre-git": "3.17.1",
"prettier": "2.0.1",
"rollup": "4.18.0",
"rxjs": "6.5.4",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typedoc": "0.24.8",
"typescript": "5.1.6",
"validate-commit-msg": "2.14.0",
"vinyl-buffer": "1.0.1",
"vinyl-named": "1.1.0",
"vinyl-source-stream": "2.0.0",
"web-streams-polyfill": "3.2.1",
"webpack": "5.92.1",
"webpack-bundle-analyzer": "4.10.1",
"webpack-stream": "7.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.17.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"pre-git": {
"allow-untracked-files": true,
"pre-commit": [
"npx lint-staged"
],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
},
"lint-staged": {
"*.@(ts)": [
"prettier --config .prettierrc --write",
"eslint --fix"
]
},
"greenkeeper": {
"ignore": [
"ts-node"
]
},
"release": {
"analyzeCommits": "simple-commit-message"
},
"engines": {
"node": ">=12.0"
}
}