forked from ruyadorno/ntl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.01 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
{
"name": "nti",
"version": "0.0.1",
"description": "Npm Task Info: Interactive cli menu shown description to list and run npm tasks",
"repository": "sculove/nti",
"author": {
"name": "sculove",
"url": "http://sculove.github.io"
},
"bin": "cli.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"pretest": "xo",
"test": "ava # this is description"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"npm",
"task",
"list",
"interactive",
"inquirer",
"cli-app",
"cli",
"nti",
"ntl",
"description",
"runner",
"menu"
],
"dependencies": {
"inquirer": "^0.12.0",
"minimist": "^1.2.0",
"pkginfo": "~0.3.1"
},
"devDependencies": {
"ava": "^0.11.0",
"tempdir": "^1.0.0",
"tempfile": "^1.1.1",
"xo": "^0.12.1"
},
"xo": {
"rules": {
"consistent-return": 0
}
},
"ava": {
"files": [
"test/index.js"
],
"tap": true,
"verbose": true
},
"license": "MIT"
}