-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.72 KB
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
{
"name": "lazy-sequences",
"version": "2.0.0",
"description": "Library of lazy sequences",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"files": [
"*.js",
"*.d.ts",
"Seq/",
"Async/",
"common/"
],
"keywords": [
"async",
"functional",
"iterable",
"iterators",
"lazy",
"sequence",
"typescript"
],
"author": "Björn Aili <4073478+beark@users.noreply.github.com> (https://github.com/beark)",
"repository": "github:beark/lazy-sequences",
"homepage": "https://github.com/beark/lazy-sequences",
"bugs": "https://github.com/beark/lazy-sequences/issues",
"engines": {
"node": ">= 12.17.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint 'src/**'",
"package": "node scripts/prepare",
"test": "jest"
},
"dependencies": {
"tslib": ">= 1.10.0 && < 3"
},
"devDependencies": {
"@propcheck/core": "0.12.1",
"@propcheck/jest": "0.10.2",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"eslint": "8.1.0",
"jest": "27.3.1",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
},
"jest": {
"preset": "ts-jest",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
}
}
}