-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 829 Bytes
/
package.json
File metadata and controls
43 lines (42 loc) · 829 Bytes
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
{
"name": "fs-finder",
"description": "[ABANDONED] File system recursive finder",
"version": "1.8.1",
"author": {
"name": "David Kudera",
"email": "kudera.d@gmail.com"
},
"keywords": [
"file",
"fs",
"finder",
"recursive",
"walk"
],
"repository": {
"type": "git",
"url": "git@github.com:Carrooi/Node-FsFinder.git"
},
"license": "MIT",
"engines": {
"node": ">=0.9"
},
"main": "./lib/Finder.js",
"dependencies": {
"moment": "^2.5.0",
"operator-compare": "~1.0.1",
"escape-regexp": "~0.0.1",
"q": "~1.0.0",
"async": "~0.2.9"
},
"devDependencies": {
"chai": "~1.8.1",
"fs-mock": "~1.0.1",
"mocha": "~1.17.0"
},
"scripts": {
"build-and-test": "npm run build && npm run test",
"test": "mocha ./test/index.js --reporter spec",
"build": "coffee -co ./test/lib ./test/src"
}
}