Built motion from commit 10af8726.|2.6.34
[motion2.git] / legacy-libs / walkdir / package.json
1 {
2   "author": {
3     "name": "Ryan Day",
4     "email": "soldair@gmail.com"
5   },
6   "bugs": {
7     "url": "https://github.com/soldair/node-walkdir/issues"
8   },
9   "bundleDependencies": false,
10   "contributors": [
11     {
12       "name": "tjfontaine"
13     }
14   ],
15   "deprecated": false,
16   "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.",
17   "devDependencies": {
18     "@types/node": "^10.12.21",
19     "tape": "^4.0.0",
20     "typescript": "^3.3.1"
21   },
22   "engines": {
23     "node": ">=6.0.0"
24   },
25   "homepage": "http://github.com/soldair/node-walkdir",
26   "keywords": [
27     "find",
28     "walk",
29     "tree",
30     "files",
31     "fs"
32   ],
33   "license": "MIT",
34   "main": "./walkdir.js",
35   "name": "walkdir",
36   "repository": {
37     "type": "git",
38     "url": "git://github.com/soldair/node-walkdir.git"
39   },
40   "scripts": {
41     "test": "tape test/*.js && npm run ts",
42     "ts": "tsc --noEmit test.ts"
43   },
44   "version": "0.3.2"
45 }