-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "@supercharge/streams",
"description": "Supercharge Streams",
"version": "1.0.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/superchargejs/streams/issues"
},
"dependencies": {
"@supercharge/queue-datastructure": "~2.1.0",
"into-stream": "~6.0.0"
},
"devDependencies": {
"@types/jest": "~26.0.10",
"eslint": "~7.7.0",
"eslint-config-standard": "~14.1.1",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-standard": "~4.0.1",
"get-stream": "~6.0.0",
"jest": "~26.4.2"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/superchargejs/streams",
"keywords": [
"stream",
"streams",
"nodejs",
"supercharge",
"superchargejs"
],
"license": "MIT",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/superchargejs/streams.git"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
}
}