Izmjenjena struktura, dodan backand

This commit is contained in:
GotPPay
2017-10-16 11:19:46 +02:00
parent 1ec88afacb
commit 048e32c4aa
37153 changed files with 2975854 additions and 1 deletions

64
web/node_modules/pkg-up/readme.md generated vendored Normal file
View File

@@ -0,0 +1,64 @@
# pkg-up [![Build Status](https://travis-ci.org/sindresorhus/pkg-up.svg?branch=master)](https://travis-ci.org/sindresorhus/pkg-up)
> Find the closest package.json file
## Install
```
$ npm install --save pkg-up
```
## Usage
```
/
└── Users
└── sindresorhus
└── foo
├── package.json
└── bar
├── baz
└── example.js
```
```js
// example.js
var pkgUp = require('pkg-up');
pkgUp().then(function (filepath) {
console.log(filepath);
//=> '/Users/sindresorhus/foo/package.json'
});
```
## API
### pkgUp([cwd])
Returns a promise that resolves to a filepath or `null`.
### pkgUp.sync([cwd])
Returns a filepath or `null`.
#### cwd
Type: `string`
Default: `'.'`
Directory to start from.
## Related
- [read-pkg-up](https://github.com/sindresorhus/read-pkg-up) - Read the closest package.json file
- [pkg-dir](https://github.com/sindresorhus/pkg-dir) - Find the root directory of a npm package
- [find-up](https://github.com/sindresorhus/find-up) - Find a file by walking up parent directories
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)