-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.18 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
{
"name": "observable-to-async-generator",
"description": "Convert an observable to ES6 async generator.",
"version": "1.0.5",
"author": "Dima Parzhitsky <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/parzh/observable-to-async-generator.git"
},
"bugs": {
"url": "https://github.com/parzh/observable-to-async-generator/issues"
},
"homepage": "https://github.com/parzh/observable-to-async-generator#readme",
"keywords": [
"*",
"async",
"await",
"convert",
"create",
"function*",
"function *",
"generator",
"iterable",
"iterator",
"observable",
"otag",
"yield",
"yield*",
"yield *"
],
"files": [
"/dist",
"!/dist/**/*.{spec,test}.*",
"/README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"verbose": true,
"clearMocks": true,
"rootDir": ".",
"testMatch": [
"<rootDir>/src/**/*.{spec,test}.ts"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts",
"!<rootDir>/{src,test}/**/*.{spec,test}.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"html"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"scripts": {
"test": "jest",
"lint": "eslint \"**/*.ts\"",
"start": "node --require ts-node/register src",
"prebuild": "rm -rf dist/*",
"build": "tsc --project ./tsconfig.build.json"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "22.8.7",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"jest": "27.0.3",
"rxjs": "7.8.1",
"ts-jest": "27.0.3",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"peerDependencies": {
"rxjs": "6 || 7"
}
}