-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.15 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
{
"name": "ignored-cli",
"version": "1.0.1",
"description": "List all files that is ignored by .gitignore",
"main": "src/index.js",
"bin": {
"ignored": "bin/index.js"
},
"scripts": {
"test": "nyc ava --timeout=10s",
"test-no-report": "NODE_DEBUG=ignored-cli nyc ava --timeout=10s --verbose",
"lint": "eslint .",
"posttest": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/node-ignored-cli.git"
},
"keywords": [
"ignored-cli",
"ignored",
"ls",
"list",
"ls-ignored"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/node-ignored-cli/issues"
},
"devDependencies": {
"ava": "^1.2.1",
"codecov": "^3.2.0",
"nyc": "^13.3.0",
"eslint-config-ostai": "^1.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint": "^5.14.0"
},
"dependencies": {
"fs-extra": "^7.0.1",
"globby": "^9.0.0",
"ignore": "^5.0.5",
"minimist": "^1.2.0"
}
}