-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.68 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": "fs-iterator",
"version": "7.1.1",
"description": "A file system iterator with filter and asyncIterator iterafaces. Supports Node 0.8 and above",
"keywords": [
"recursive",
"readdir",
"fs",
"filesystem",
"filter",
"iterator",
"asyncIterator",
"Symbol.asyncIterator"
],
"homepage": "https://github.com/kmalakoff/fs-iterator",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kmalakoff/fs-iterator.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"source": "src/index.ts",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "tsds format",
"prepublishOnly": "tsds validate",
"test": "tsds test:node --no-timeouts",
"test:engines": "nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"dependencies": {
"async-compat": "^1.4.6",
"fs.realpath": "^1.0.0",
"graceful-fs": "^4.2.11",
"stack-base-iterator": "^3.0.0"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"fs-generate": "^1.10.11",
"fs-remove-compat": "^1.0.0",
"fs-stats-spys": "^1.0.0",
"is-promise": "^4.0.0",
"next-tick": "^1.1.0",
"node-version-use": "*",
"on-one": "^1.0.0",
"pinkie-promise": "*",
"readable-stream": "^2.0.2",
"ts-dev-stack": "*",
"tsds-config": "*"
},
"engines": {
"node": ">=0.8"
}
}