Skip to content

Commit 27e6dc3

Browse files
committed
feat: usando gen-packge & gen-readme
1 parent 4456c5b commit 27e6dc3

File tree

2 files changed

+89
-0
lines changed

2 files changed

+89
-0
lines changed

README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,48 @@
11
# IFMatriz
2+
[![Version](https://img.shields.io/npm/v/IFMatriz.svg?style=flat-square)](https://npmjs.org/package/IFMatriz)
3+
[![Downloads](https://img.shields.io/npm/dt/IFMatriz.svg?style=flat-square)](https://npmjs.org/package/IFMatriz)
4+
[![Travis](https://img.shields.io/travis/IFPABelem/IFMatriz.svg?branch=master&style=flat-square)](https://travis-ci.org/IFPABelem/IFMatriz)
5+
26
Web App feito para disciplinar de Calculo I - 2018.02, realizar operações com matrizes quadradas
7+
8+
9+
## Installation
10+
Module available through the
11+
[npm registry](https://www.npmjs.com/). It can be installed using the
12+
[`npm`](https://docs.npmjs.com/getting-started/installing-npm-packages-locally)
13+
or
14+
[`yarn`](https://yarnpkg.com/en/)
15+
command line tools.
16+
17+
```sh
18+
# NPM
19+
npm install IFMatriz --save
20+
# Or Using Yarn
21+
yarn add IFMatriz
22+
```
23+
24+
25+
## Tests
26+
To run the test suite, first install the dependencies, then run `test`:
27+
28+
```sh
29+
# NPM
30+
npm test
31+
# Or Using Yarn
32+
yarn test
33+
```
34+
35+
## Dependencies
36+
None
37+
38+
## Dev Dependencies
39+
- [webpack](https://ghub.io/webpack): Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.
40+
- [webpack-cli](https://ghub.io/webpack-cli): CLI for webpack & friends
41+
42+
43+
## Contributors
44+
Pull requests and stars are always welcome. For bugs and feature requests, please [create an issue](https://github.com/IFPABelem/IFMatriz/issues). [List of all contributors](https://github.com/IFPABelem/IFMatriz/graphs/contributors).
45+
46+
47+
## License
48+
[MIT](LICENSE) © [IFPA Projetos](https://github.com/IFPABelem)

package.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,47 @@
11
{
2+
"name": "IFMatriz",
3+
"main": "index.js",
4+
"version": "1.0.0",
5+
"description": "Web App feito para disciplinar de Calculo I - 2018.02, realizar operações com matrizes quadradas",
6+
"author": {
7+
"name": "Tiago Danin",
8+
"email": "TiagoDanin@outlook.com",
9+
"url": "https://TiagoDanin.github.io"
10+
},
11+
"license": "MIT",
12+
"keywords": [
13+
"matriz",
14+
"ifpa",
15+
"belem",
16+
"para",
17+
"calculo",
18+
"math"
19+
],
20+
"scripts": {
21+
"start": "npx webpack",
22+
"build": "npx webpack --mode production",
23+
"test": "node tests.js"
24+
},
25+
"private": false,
26+
"repository": "https://github.com/IFPABelem/IFMatriz.git",
27+
"homepage": "https://IFPABelem.github.io/IFMatriz",
28+
"bugs": "https://github.com/IFPABelem/IFMatriz/issues",
29+
"github": {
30+
"name": "IFMatriz",
31+
"owner": "IFPABelem"
32+
},
33+
"files": [
34+
"LICENSE",
35+
"README.md",
36+
"dist",
37+
"index.html",
38+
"index.js",
39+
"operacoes",
40+
"package.json",
41+
"tests.js",
42+
"webpack.config.js",
43+
"yarn.lock"
44+
],
245
"devDependencies": {
346
"webpack": "4.17.1",
447
"webpack-cli": "3.1.2"

0 commit comments

Comments
 (0)