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.
47 lines
1.1 KiB
47 lines
1.1 KiB
{ |
|
"name": "fined", |
|
"version": "1.2.0", |
|
"description": "Find a file given a declaration of locations.", |
|
"author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)", |
|
"contributors": [ |
|
"Takayuki Sato <sttk.xslet@gmail.com>", |
|
"Blaine Bublitz <blaine.bublitz@gmail.com>" |
|
], |
|
"repository": "gulpjs/fined", |
|
"license": "MIT", |
|
"engines": { |
|
"node": ">= 0.10" |
|
}, |
|
"main": "index.js", |
|
"files": [ |
|
"index.js", |
|
"LICENSE" |
|
], |
|
"scripts": { |
|
"lint": "eslint .", |
|
"pretest": "npm run lint", |
|
"test": "mocha --async-only", |
|
"cover": "istanbul cover _mocha --report lcovonly", |
|
"coveralls": "npm run cover && istanbul-coveralls" |
|
}, |
|
"dependencies": { |
|
"expand-tilde": "^2.0.2", |
|
"is-plain-object": "^2.0.3", |
|
"object.defaults": "^1.1.0", |
|
"object.pick": "^1.2.0", |
|
"parse-filepath": "^1.0.1" |
|
}, |
|
"devDependencies": { |
|
"eslint": "^2.13.0", |
|
"eslint-config-gulp": "^3.0.1", |
|
"expect": "^1.20.2", |
|
"istanbul": "^0.4.3", |
|
"istanbul-coveralls": "^1.0.3", |
|
"mocha": "^3.5.3" |
|
}, |
|
"keywords": [ |
|
"find", |
|
"lookup", |
|
"config" |
|
] |
|
}
|
|
|