Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / walkdir / package.json
diff --git a/legacy-libs/walkdir/package.json b/legacy-libs/walkdir/package.json
new file mode 100644 (file)
index 0000000..6ab0c38
--- /dev/null
@@ -0,0 +1,45 @@
+{
+  "author": {
+    "name": "Ryan Day",
+    "email": "soldair@gmail.com"
+  },
+  "bugs": {
+    "url": "https://github.com/soldair/node-walkdir/issues"
+  },
+  "bundleDependencies": false,
+  "contributors": [
+    {
+      "name": "tjfontaine"
+    }
+  ],
+  "deprecated": false,
+  "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.",
+  "devDependencies": {
+    "@types/node": "^10.12.21",
+    "tape": "^4.0.0",
+    "typescript": "^3.3.1"
+  },
+  "engines": {
+    "node": ">=6.0.0"
+  },
+  "homepage": "http://github.com/soldair/node-walkdir",
+  "keywords": [
+    "find",
+    "walk",
+    "tree",
+    "files",
+    "fs"
+  ],
+  "license": "MIT",
+  "main": "./walkdir.js",
+  "name": "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"
+  },
+  "version": "0.3.2"
+}