-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"author": {
"email": "km.8k6ce+npm@gmail.com",
"name": "kei-g"
},
"bugs": {
"url": "https://github.com/kei-g/iterators/issues"
},
"description": "Iterators Library",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/eslint": "^9.6.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"c8": "^10.1.2",
"chai": "^5.1.2",
"esbuild": "^0.24.0",
"esbuild-register": "^3.6.0",
"eslint": "^9.14.0",
"mocha": "^10.8.2",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"engines": {
"node": ">=14.17.5"
},
"homepage": "https://github.com/kei-g/iterators",
"keywords": [
"async",
"asynciterable",
"asynciterator",
"iterable",
"iterator"
],
"license": "BSD-3-Clause",
"main": "index.js",
"name": "@kei-g/iterators",
"publishConfig": {
"access": "public"
},
"repository": "github:kei-g/iterators",
"scripts": {
"build": "npm-run-all -p clean lint -p build:bundle build:tsc",
"build:bundle": "esbuild src/index.ts --bundle --minify --outfile=index.js --platform=node --target=ES2020",
"build:tsc": "tsc",
"clean": "rimraf coverage/ index.d.ts index.js lib/ types/",
"cover": "c8 --check-coverage _mocha",
"lint": "eslint src/**/*.ts",
"postpublish": "run-s clean",
"prepublishOnly": "run-s build",
"test": "run-p cover lint"
},
"types": "index.d.ts",
"version": "1.1.14"
}