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.
48 lines
930 B
48 lines
930 B
2 years ago
|
{
|
||
|
"name": "has-gulplog",
|
||
|
"version": "1.0.0",
|
||
|
"description": "Check if gulplog is available before attempting to use it",
|
||
|
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
|
||
|
"contributors": [],
|
||
|
"repository": "gulpjs/has-gulplog",
|
||
|
"license": "MIT",
|
||
|
"engines": {
|
||
|
"node": ">=10.13.0"
|
||
|
},
|
||
|
"main": "index.js",
|
||
|
"files": [
|
||
|
"index.js",
|
||
|
"LICENSE"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"lint": "eslint .",
|
||
|
"pretest": "npm run lint",
|
||
|
"test": "nyc mocha --async-only"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"sparkles": "^2.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "^7.0.0",
|
||
|
"eslint-config-gulp": "^5.0.1",
|
||
|
"eslint-plugin-node": "^11.1.0",
|
||
|
"expect": "^27.5.1",
|
||
|
"mocha": "^8.4.0",
|
||
|
"nyc": "^15.0.0"
|
||
|
},
|
||
|
"nyc": {
|
||
|
"reporter": [
|
||
|
"lcov",
|
||
|
"text-summary"
|
||
|
]
|
||
|
},
|
||
|
"prettier": {
|
||
|
"singleQuote": true
|
||
|
},
|
||
|
"keywords": [
|
||
|
"gulp-util",
|
||
|
"gulplog",
|
||
|
"logging"
|
||
|
]
|
||
|
}
|