-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 778 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
{
"name": "tree-stringify",
"version": "1.1.0",
"description": "Transforms an object into a beautiful tree",
"main": "./lib/tree-stringify.js",
"bin": {
"tree-stringify": "./lib/cli.js"
},
"scripts": {
"test": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/kmck/tree-stringify.git"
},
"keywords": [
"tree",
"stringify",
"box drawing",
"cli"
],
"author": "Keith McKnight",
"license": "MIT",
"dependencies": {
"lodash": "^4.x",
"minimist": "^1.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"glob": "^7.0.6",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"semver": "^5.3.0"
},
"files": [
"/lib"
]
}