-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ifmatriz",
"main": "index.js",
"version": "1.0.2",
"description": "Web App feito para disciplinar de Calculo I - 2018.02, realizar operações com matrizes quadradas",
"author": {
"name": "Tiago Danin",
"email": "TiagoDanin@outlook.com",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"matriz",
"ifpa",
"belem",
"para",
"calculo",
"math"
],
"scripts": {
"start": "npx webpack",
"test": "node tests.js",
"build": "npx webpack --mode production"
},
"private": false,
"repository": "https://github.com/IFPABelem/IFMatriz.git",
"homepage": "https://IFPABelem.github.io/IFMatriz",
"bugs": "https://github.com/IFPABelem/IFMatriz/issues",
"github": {
"name": "IFMatriz",
"owner": "IFPABelem"
},
"files": [
"LICENSE",
"README.md",
"default.html",
"dist",
"index.html",
"index.js",
"operacoes",
"package.json",
"tests.js",
"webpack.config.js",
"yarn.lock"
],
"devDependencies": {
"webpack": "5.37.1",
"webpack-cli": "4.7.0"
}
}