-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.1 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
{
"name": "namesake-cli",
"version": "2.0.0",
"description": "Find available & relevant npm package names from the command line.",
"author": {
"name": "Bo Lingen",
"email": "lingenbw@gmail.com",
"url": "https://github.com/citycide"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/citycide/namesake-cli.git"
},
"homepage": "https://github.com/citycide/namesake-cli",
"bugs": "https://github.com/citycide/namesake-cli/issues",
"engines": {
"node": ">=6"
},
"keywords": [
"cli",
"name",
"finder",
"utility",
"authors",
"maintainers"
],
"bin": {
"namesake": "./index.js"
},
"files": [
"index.js"
],
"scripts": {
"lint": "standard \"*.js\" | snazzy",
"test": "ava"
},
"dependencies": {
"chalk": "^2.3.0",
"even-chunks": "^1.1.0",
"meow": "^3.7.0",
"namesake": "2.0.0",
"ora": "^1.3.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"ava": "^0.24.0",
"execa": "^0.8.0",
"npm-name": "^3.1.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
}
}