https://github.com/puse/cadaster
https://github.com/puse/cadaster
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/puse/cadaster
- Owner: puse
- License: mit
- Created: 2019-06-24T10:45:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-13T22:25:23.000Z (almost 6 years ago)
- Last Synced: 2025-02-28T11:02:42.909Z (over 1 year ago)
- Language: JavaScript
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# cadaster
> Geocoding and company
## :construction:
## Getting Started
### Installation
Following steps should derive to full development installation
- clone this repo
- go to the root of repo directory
- install root dependencies
```sh
# Install root dependencies
npm install
```
This install step should trigger npm `postinstall` hook to resolve dependencies
for node packages w/ Lerna. To run this manually when needed run npm script
`bootstrap` which is an alias for
```
lerna bootstrap --hoist
```
### Tests
Packages should provide tests to ensure correct behavior.
Run tests in package directory
```sh
# run quick tests
npm run test
# test with coverage report
npm run test:coverage
# test watching file changes
npm run test:watch
```
### NPM Scripts
> Commands
- `lint`
- `test`
- `test:coverage`
> Hooks
- `postinstall` - `lerna bootstrap`
### License
[MIT](/LICENSE)