-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 KB
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
{
"name": "pretty-cli",
"version": "0.0.13",
"description": "Pretty-cli is a lightweight utility that helps you to create nice looking command line interfaces. It forces a well structured output and gives unimited flexibility with its templating system without adding any overhead.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --watch",
"test-dbg": "mocha --debug --compilers js:babel-core/register --watch",
"dev": "./node_modules/.bin/babel-watch index.js",
"compile": "./node_modules/.bin/babel src --optional runtime -d lib",
"compile-watch": "./node_modules/.bin/babel src --watch --optional runtime -d lib",
"prepublish": "npm run compile"
},
"keywords": [
"console",
"pretty-cli",
"prettify",
"cli",
"output",
"print",
"console.log",
"log"
],
"author": "Michael Cereda",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"mocha": "^3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/MichaelCereda/pretty-cli.git"
},
"dependencies": {
"colors": "^1.1.2",
"lodash": "^4.15.0"
}
}