forked from nspragg/filehound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.89 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "filehound",
"version": "2.0.0-alpha.4",
"description": "Find files the easy way",
"main": "index.js",
"scripts": {
"jsdoc": "jsdoc -c ./docconfig/jsdoc.json",
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -fr dist/*",
"prepublish": "npm run build",
"prepublishOnly": "tsc -p ./ --outDir dist",
"test": "mocha -r ts-node/register test/*.ts",
"posttest": "npm run lint",
"postinstall": "npm run build",
"lint": "tslint --project tsconfig.json",
"coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary"
},
"repository": {
"type": "git",
"url": "https://github.com/nspragg/filehound.git"
},
"keywords": [
"file",
"recursive",
"search",
"filehound",
"file",
"hound",
"lister",
"find",
"directory",
"walk",
"walker",
"promise",
"finder",
"fs",
"file system"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nspragg/filehound/issues"
},
"homepage": "https://github.com/nspragg/filehound",
"devDependencies": {
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.33",
"@types/typescript": "^2.0.0",
"eslint-config-iplayer-base": "^1.0.0",
"chai": "^4.1.2",
"coveralls": "^2.11.9",
"eslint": "^3.11.1",
"istanbul": "1.1.0-alpha.1",
"jsdoc": "^3.4.3",
"mocha": "^3.5.3",
"sinon": "^2.1.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.3.1",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.6.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"file-js": "0.3.0",
"lodash": "^4.13.1",
"minimatch": "^3.0.2",
"moment": "^2.14.1",
"unit-compare": "^1.0.1"
}
}