-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 KB
/
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
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
{
"name": "then-recursively-search",
"version": "5.0.0",
"description": "An async function that recursively searches for a file, moving up the directory tree until found.",
"main": "index.js",
"scripts": {
"tdd": "cucumber-js --format rerun:@failed.txt",
"test": "npm run lint && npm run check-coverage",
"lint": "standard",
"check-coverage": "nyc cucumber-js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && npx --yes codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpassarelli/then-recursively-search.git"
},
"keywords": [
"file",
"search",
"recursive",
"promise",
"async"
],
"author": "David Passarelli <dpassarelli@camelotcg.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dpassarelli/then-recursively-search/issues"
},
"homepage": "https://github.com/dpassarelli/then-recursively-search#readme",
"engines": {
"node": ">10"
},
"standard": {
"global": [
"expect"
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 92,
"statements": 92,
"functions": 92,
"branches": 92,
"exclude": [
"features/",
"cucumber.js"
]
},
"dependencies": {
"callsites": "^3.1.0",
"debug": "^4.3.2"
},
"devDependencies": {
"@cucumber/cucumber": "^8.0.0-rc.1",
"chai": "^4.3.4",
"del": "^6.0.0",
"nyc": "^15.1.0",
"standard": "^16.0.4"
}
}