forked from dcworldwide/human-names
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.46 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
61
62
63
64
65
66
67
68
{
"name": "people-names",
"version": "1.0.15",
"description": "Get popular human names",
"license": "MIT",
"repository": "dcworldwide/human-names",
"bin": {
"human-names": "lib/cli.js"
},
"author": {
"name": "danijel7",
"email": "",
"url": "danijel.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "babel src -d lib && babel tests -d lib",
"test": "npm run build && babel-node lib/test.js"
},
"main": "lib/index.js",
"files": [
"lib/index.js",
"lib/cli.js",
"data/female-human-names-en.json",
"data/male-human-names-en.json",
"data/female-human-names-it.json",
"data/male-human-names-it.json",
"data/female-human-names-fr.json",
"data/male-human-names-fr.json",
"data/female-human-names-de.json",
"data/male-human-names-de.json",
"data/female-human-names-es.json",
"data/male-human-names-es.json",
"data/female-human-names-nl.json",
"data/male-human-names-nl.json"
],
"keywords": [
"cli-app",
"cli",
"bin",
"word",
"words",
"list",
"array",
"random",
"rand",
"human",
"humans",
"name",
"names",
"female",
"male"
],
"dependencies": {
"compendium-js": "0.0.31",
"compromise": "^11.13.0",
"lodash.uniq": "^4.2.1",
"meow": "^3.0.0",
"unique-random-array": "^1.0.0"
},
"devDependencies": {
"ava": "0.0.4",
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0"
}
}