47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
|
# Typings Core
|
||
|
|
||
|
[![NPM version][npm-image]][npm-url]
|
||
|
[![NPM downloads][downloads-image]][downloads-url]
|
||
|
[![Travis status][travis-image]][travis-url]
|
||
|
[![Appveyor status][appveyor-image]][appveyor-url]
|
||
|
[![Test coverage][coveralls-image]][coveralls-url]
|
||
|
|
||
|
> The core logic for Typings.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```ts
|
||
|
import * as typings from 'typings-core'
|
||
|
```
|
||
|
|
||
|
## Contributing
|
||
|
|
||
|
```sh
|
||
|
# Installation
|
||
|
# Fork this repo (https://github.com/typings/core)
|
||
|
# Clone the fork (E.g. `https://github.com/<your_username>/core.git`)
|
||
|
cd core
|
||
|
npm run bootstrap
|
||
|
|
||
|
# Build
|
||
|
npm run build
|
||
|
|
||
|
# Test
|
||
|
npm run test
|
||
|
```
|
||
|
|
||
|
## License
|
||
|
|
||
|
MIT
|
||
|
|
||
|
[npm-image]: https://img.shields.io/npm/v/typings-core.svg?style=flat
|
||
|
[npm-url]: https://npmjs.org/package/typings-core
|
||
|
[downloads-image]: https://img.shields.io/npm/dm/typings-core.svg?style=flat
|
||
|
[downloads-url]: https://npmjs.org/package/typings-core
|
||
|
[travis-image]: https://img.shields.io/travis/typings/core.svg?style=flat
|
||
|
[travis-url]: https://travis-ci.org/typings/core
|
||
|
[coveralls-image]: https://img.shields.io/coveralls/typings/core.svg?style=flat
|
||
|
[coveralls-url]: https://coveralls.io/r/typings/core?branch=master
|
||
|
[appveyor-image]: https://ci.appveyor.com/api/projects/status/32r7s2skrgm9ubva/branch/master?svg=true
|
||
|
[appveyor-url]: https://ci.appveyor.com/project/blakeembrey/core/branch/master
|