-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "glob-gitignore",
"version": "1.0.15",
"description": "Extends `glob` with support for filtering files according to gitignore rules and exposes an optional Promise API with NO performance issues",
"main": "src/index.js",
"scripts": {
"test": "nyc ava --timeout=10s --no-worker-threads",
"test-no-report": "NODE_DEBUG=ignore-nested nyc ava --timeout=10s --verbose --no-worker-threads",
"lint": "eslint .",
"// posttest": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"files": [
"src/",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/node-glob-gitignore.git"
},
"keywords": [
"glob-gitignore",
"glob",
"gitignore",
"ignore",
"globby",
"promise",
"module",
"es-module"
],
"engines": {
"node": ">= 6"
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/node-glob-gitignore/issues"
},
"ava": {
"files": [
"test/*.js"
]
},
"devDependencies": {
"ava": "^4.0.1",
"codecov": "^3.8.3",
"eslint": "^5.1.0",
"eslint-config-ostai": "^1.1.0",
"eslint-plugin-import": "^2.13.0",
"nyc": "^12.0.2"
},
"dependencies": {
"glob": "^7.1.2",
"ignore": "^5.0.0",
"lodash": "^4.17.21",
"make-array": "^1.0.5",
"util.inherits": "^1.0.3"
}
}