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.
50 lines
1.1 KiB
50 lines
1.1 KiB
{ |
|
"name": "resolve-options", |
|
"version": "1.1.0", |
|
"description": "Resolve an options object based on configuration.", |
|
"author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)", |
|
"contributors": [ |
|
"Blaine Bublitz <blaine.bublitz@gmail.com>" |
|
], |
|
"repository": "gulpjs/resolve-options", |
|
"license": "MIT", |
|
"engines": { |
|
"node": ">= 0.10" |
|
}, |
|
"main": "index.js", |
|
"files": [ |
|
"LICENSE", |
|
"index.js" |
|
], |
|
"scripts": { |
|
"lint": "eslint index.js test/ && jscs index.js test/", |
|
"pretest": "npm run lint", |
|
"test": "mocha --async-only", |
|
"cover": "istanbul cover _mocha --report lcovonly", |
|
"coveralls": "npm run cover && istanbul-coveralls" |
|
}, |
|
"dependencies": { |
|
"value-or-function": "^3.0.0" |
|
}, |
|
"devDependencies": { |
|
"eslint": "^1.10.3", |
|
"eslint-config-gulp": "^2.0.0", |
|
"expect": "^1.20.2", |
|
"istanbul": "^0.4.3", |
|
"istanbul-coveralls": "^1.0.3", |
|
"jscs": "^2.4.0", |
|
"jscs-preset-gulp": "^1.0.0", |
|
"mocha": "^3.2.0" |
|
}, |
|
"keywords": [ |
|
"options", |
|
"functions", |
|
"resolver", |
|
"type", |
|
"configuration", |
|
"config", |
|
"opts", |
|
"opt", |
|
"default" |
|
] |
|
}
|
|
|