-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
35 lines (35 loc) · 841 Bytes
/
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
{
"name": "walkdir",
"description": "Find files simply. Walks a directory tree emitting events based on what it finds. Presents a familiar callback/emitter/a+sync interface. Walk a tree of any depth.",
"version": "0.4.1",
"author": "Ryan Day <[email protected]>",
"keywords": [
"find",
"walk",
"tree",
"files",
"fs"
],
"main": "./walkdir.js",
"homepage": "http://github.com/soldair/node-walkdir",
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-walkdir.git"
},
"scripts": {
"test": "tape test/*.js && npm run ts",
"ts": "tsc --noEmit test.ts"
},
"devDependencies": {
"@types/node": "^10.12.21",
"tape": "^4.0.0",
"typescript": "^3.3.1"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"contributors": [
"tjfontaine"
]
}