-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.25 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
{
"name": "buffered-async-iterable",
"version": "1.0.1",
"description": "Creates a prefetched async iterable",
"homepage": "http://github.com/voxpelli/buffered-async-iterable",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/buffered-async-iterable.git"
},
"keywords": [
"async",
"iterator",
"highwatermark"
],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": ">=18.6.0"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"index.js",
"index.d.ts",
"index.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check -i @voxpelli/eslint-config -i eslint",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 95 --ignore-files 'test/*.spec.js'",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"clean": "run-p clean:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-quantifiers": "^1.0.4",
"@types/mocha": "^10.0.8",
"@types/node": "^18.19.50",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@voxpelli/eslint-config": "^22.1.0",
"@voxpelli/tsconfig": "^14.0.0",
"c8": "^10.1.2",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-quantifiers": "^1.0.18",
"eslint": "^9.10.0",
"husky": "^9.1.6",
"installed-check": "^9.3.0",
"knip": "^5.30.2",
"mocha": "^10.7.3",
"npm-run-all2": "^6.2.2",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"type-coverage": "^2.29.1",
"typescript": "~5.5.3",
"validate-conventional-commit": "^1.0.4"
}
}