12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "value-or-function",
- "version": "3.0.0",
- "description": "Normalize a value or function, applying extra args to the function",
- "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
- "contributors": [
- "Blaine Bublitz <blaine.bublitz@gmail.com>",
- "Hugo Wood <hx4.5@free.fr>"
- ],
- "repository": "gulpjs/value-or-function",
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- },
- "main": "index.js",
- "files": [
- "index.js"
- ],
- "scripts": {
- "lint": "eslint . && jscs index.js test/",
- "pretest": "npm run lint",
- "test": "mocha --async-only",
- "cover": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly",
- "coveralls": "npm run cover && istanbul-coveralls"
- },
- "dependencies": {},
- "devDependencies": {
- "eslint": "^1.10.3",
- "eslint-config-gulp": "^2.0.0",
- "expect": "^1.16.0",
- "istanbul": "^0.4.3",
- "istanbul-coveralls": "^1.0.3",
- "jscs": "^2.3.5",
- "jscs-preset-gulp": "^1.0.0",
- "mocha": "^2.4.5"
- },
- "keywords": [
- "options",
- "normalize",
- "value",
- "function"
- ]
- }
|