-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.3 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.3 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
{
"name": "heycli",
"version": "0.3.0",
"description": "A human-readable interface for terminal commands",
"keywords": [
"cli",
"command",
"glob",
"human",
"ls",
"mkdir",
"mkdirp",
"readable",
"rm",
"rmrf",
"rimraf",
"terminal",
"create",
"delete",
"destroy",
"find",
"list",
"make",
"remove",
"trash"
],
"engines": {
"node": ">=8"
},
"license": "MIT",
"repository": "github:chrisdothtml/hey",
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"bin": {
"hey": "bin/hey"
},
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs": "node generate-docs.js",
"lint": "standard '*(lib|test)/**/*.js' --verbose | snazzy",
"prepush": "npm run lint",
"test": "ava -v",
"test+coverage": "nyc npm test"
},
"ava": {
"require": "esm"
},
"nyc": {
"require": "esm"
},
"standard": {
"env": "mocha"
},
"dependencies": {
"fs-extra": "^7.0.0",
"globby": "^8.0.1",
"kleur": "^2.0.2",
"trash": "^4.3.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"doctrine": "^2.1.0",
"esm": "^3.0.84",
"husky": "^0.14.3",
"nyc": "^11.7.1",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
}
}