1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "to-absolute-glob",
- "description": "Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.",
- "version": "0.1.1",
- "homepage": "https://github.com/jonschlinkert/to-absolute-glob",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/to-absolute-glob",
- "bugs": "https://github.com/jonschlinkert/to-absolute-glob/issues",
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "dependencies": {
- "extend-shallow": "^2.0.1"
- },
- "devDependencies": {
- "mocha": "*"
- },
- "keywords": [
- "resolve",
- "pattern",
- "absolute",
- "glob"
- ],
- "verb": {
- "related": {
- "list": [
- "is-glob",
- "is-valid-glob",
- "has-glob"
- ]
- }
- }
- }
|