You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
{ |
|
"name": "eazy-logger", |
|
"description": "Simple cli logger", |
|
"version": "3.1.0", |
|
"homepage": "https://github.com/shakyshane/easy-logger", |
|
"author": { |
|
"name": "Shane Osbourne" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git://github.com/shakyshane/easy-logger.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/shakyshane/easy-logger/issues" |
|
}, |
|
"licenses": [ |
|
{ |
|
"type": "Apache 2.0", |
|
"url": "https://github.com/shakyshane/easy-logger/blob/master/LICENSE" |
|
} |
|
], |
|
"files": [ |
|
"index.js", |
|
"lodash.custom.js", |
|
"example.js" |
|
], |
|
"main": "index.js", |
|
"engines": { |
|
"node": ">= 0.8.0" |
|
}, |
|
"scripts": { |
|
"lint": "jshint index.js test/*.js", |
|
"test": "npm run lint && mocha", |
|
"lodash": "lodash include=cloneDeep,merge exports=node", |
|
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" |
|
}, |
|
"dependencies": { |
|
"tfunk": "^4.0.0" |
|
}, |
|
"devDependencies": { |
|
"chai": "^3.5.0", |
|
"chalk": "^1.1.1", |
|
"coveralls": "^2.11.2", |
|
"jshint": "^2.6.0", |
|
"lodash-cli": "4.12.0", |
|
"mocha": "^2.1.0", |
|
"sinon": "^1.12.2" |
|
}, |
|
"keywords": [ |
|
"plugins" |
|
] |
|
}
|
|
|