Skip to content

Commit 2a457b2

Browse files
author
Sergey Khomushin
committed
init
0 parents  commit 2a457b2

File tree

11 files changed

+5964
-0
lines changed

11 files changed

+5964
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Specifies files to intentionally ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
node_modules/
5+
coverage/
6+
dist/
7+
.idea/
8+
*.swp
9+
.DS_Store
10+
Thumbs.db

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2020 xr0master
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# chartjs-react
2+
3+
## Intro
4+
5+
## Why?
6+
7+
## Version
8+
9+
The version format is X.Y.Z, where
10+
11+
- X - is chart.js major version
12+
- Y - is chartjs-react major version
13+
- Z - is chartjs-react minor version
14+
15+
## Support the project
16+
17+
If you like to use this module please click the star button - it is very motivating.
18+
19+
## Quick Start
20+
21+
Install chartjs-react using [npm](https://www.npmjs.com/):
22+
23+
```bash
24+
$ npm install chartjs-react
25+
```
26+
27+
## Documentation
28+
29+
## Examples
30+
31+
**add bar chart**
32+
33+
```js
34+
```
35+
36+
## License
37+
38+
[MIT](./LICENSE)

jest.conf.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"globals": {
3+
"ts-jest": {
4+
"diagnostics": {
5+
"warnOnly": true
6+
}
7+
}
8+
},
9+
"collectCoverage": true,
10+
"coverageDirectory": "coverage",
11+
"transform": {
12+
"^.+\\.ts?$": "ts-jest"
13+
},
14+
"testRegex": "\\.(spec)\\.(tsx?)$",
15+
"moduleFileExtensions": ["ts", "json", "js"],
16+
"modulePaths": ["src"],
17+
"testPathIgnorePatterns": ["/node_modules/"],
18+
"testEnvironment": "node",
19+
"preset": "ts-jest",
20+
"testMatch": null
21+
}

0 commit comments

Comments
 (0)