-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "async-folder-walker",
"description": "An async iterator for walking directories, with helpful options",
"version": "3.0.5",
"main": "index.js",
"types": "index.d.ts",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/bcomnes/async-folder-walker/issues"
},
"dependencies": {
"ignore": "^7.0.5"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^25.0.0",
"auto-changelog": "^2.2.0",
"gh-release": "^7.0.0",
"npm-run-all2": "^9.0.0",
"p-temporary-directory": "^2.0.1",
"standard": "^17.0.0",
"tap": "^21.1.1",
"typescript": "~6.0.3"
},
"peerDependencies": {
"@types/node": "*"
},
"homepage": "https://github.com/bcomnes/async-folder-walker",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/async-folder-walker.git"
},
"scripts": {
"prepublishOnly": "npm run build && git push --follow-tags && gh-release -y",
"postpublish": "npm run clean",
"test": "npm run clean && run-s test:*",
"test:standard": "standard",
"test:tap": "tap",
"test:tsc": "tsc",
"debug": "node --nolazy --inspect-brk=9229 -r esm test.js",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md",
"clean": "run-p clean:*",
"clean:declarations": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*')",
"build": "npm run clean && run-p build:*",
"build:declaration": "tsc -p declaration.tsconfig.json"
},
"standard": {
"ignore": [
"dist"
]
},
"tap": {
"serial": [],
"typecheck": true,
"allow-incomplete-coverage": true,
"coverage-report": [
"text",
"lcovonly"
]
}
}