-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 964 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 964 Bytes
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
{
"name": "threewords",
"version": "0.0.1",
"description": "Generate three-word identifiers",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/StarryInternet/threewords"
},
"bugs": {
"url": "https://github.com/StarryInternet/threewords/issues"
},
"homepage": "https://github.com/StarryInternet/threewords",
"devDependencies": {
"chai": "3.5.0",
"eslint-config-starry": "7.0.0",
"mocha": "3.4.2",
"nyc": "10.3.2"
},
"dependencies": {},
"license": "MIT",
"author": "Kevin Ennis <kennis84@gmail.com> (https://twitter.com/kevincennis)",
"contributors": [
{
"name": "Kevin Ennis"
},
{
"name": "Stephen Murray"
}
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "eslint lib/* && nyc mocha test/*",
"bench": "node bench.js"
},
"bin": {
"threewords": "./bin/cli.js",
"3words": "./bin/cli.js"
},
"main": "index.js"
}