-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "iterity",
"version": "0.1.0",
"description": "Makes working with iterable collections easy and predictable",
"homepage": "https://github.com/miniven/iterity/#readme",
"keywords": [
"iterator",
"asynciterator",
"iterable",
"asynciterable",
"async",
"generator",
"typescript"
],
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"_clear": "rm -rf build",
"_reinstall": "rm -rf node_modules && npm ci",
"test": "jest --verbose -o",
"compile": "npm run _clear && tsc",
"prepublishOnly": "npm run _reinstall && npm run compile"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"author": "Veniamin Trepachko <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/miniven/iterity.git"
},
"bugs": {
"url": "https://github.com/miniven/iterity/issues"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}