-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 817 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 817 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
{
"name": "chance-cli",
"version": "1.0.7",
"description": "Chance CLI - random generator for the command line",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": "chancejs/chancejs-cli",
"bin": {
"chance": "./index.js"
},
"preferGlobal": true,
"keywords": [
"random",
"chance",
"cli",
"terminal",
"generator"
],
"author": "Victor Quinn <mail@victorquinn.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chancejs/chancejs-cli/issues"
},
"homepage": "https://github.com/chancejs/chancejs-cli#readme",
"dependencies": {
"chalk": "^1.1.1",
"chance": "^1.0.10",
"commander": "^2.8.1",
"minimist": "^1.2.0",
"ramda": "^0.17.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}