Skip to content

Commit 455957c

Browse files
committed
Remove unuse pkgs
1 parent 144b8b7 commit 455957c

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
},
2626
"homepage": "https://github.com/apibyexample/abe-json-builder",
2727
"dependencies": {
28-
"colours": "~0.6.0-2",
2928
"glob": "~4.0.6",
3029
"lodash-node": "~2.4.1",
3130
"mkdirp": "~0.5.0"

src/abe-json-builder.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
var colors = require('colours'),
2-
fs = require('fs'),
1+
var fs = require('fs'),
32
glob = require('glob'),
43
lodash = require('lodash-node'),
54
mkdirp = require('mkdirp'),
65
path = require('path'),
7-
util = require('util'),
86
errors = {
97
'NOT_ABE': 'This file is an invalid ABE JSON format'
108
},
@@ -43,7 +41,7 @@ exports.jsonBuilder = function (options, callback) {
4341
// JSON file
4442
lodash.forEach(json.examples, function (obj, key) {
4543
var data = JSON.stringify(json
46-
.examples[key].response.body, null, 4)
44+
.examples[key].response.body, null, 4),
4745
file = buildName + baseName + '-' + key + '.json',
4846
filePath = path.join(folderPath, file);
4947

0 commit comments

Comments
 (0)