-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
99 lines (99 loc) · 3.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@designliquido/delegua",
"version": "0.36.2",
"description": "Linguagem de programação simples e moderna usando português estruturado.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"copiar-arquivos-pacote": "yarn copyfiles -V ./bin/delegua ./bin/delegua.cmd ./dist && yarn copyfiles -V ./package.json ./dist/bin && yarn copyfiles -V ./README.md ./dist",
"empacotar": "yarn rimraf ./dist && tsc && yarn umd && yarn copiar-arquivos-pacote",
"gerar-documentacao-tecnica": "typedoc --out docs fontes/index.ts",
"publicar-docs": "yarn gerar-documentacao-tecnica && yarn copyfiles -V ./recursos/**/* ./docs && yarn gh-pages -d docs",
"publicar-npm": "npm publish ./dist --access public",
"testes-unitarios": "jest --coverage",
"testes-unitarios:insignias": "jest-coverage-badges --output ./recursos/imagens",
"observar-testes-unitarios": "jest --watchAll",
"observar-testes-unitarios-com-coverage": "jest --coverage --watchAll",
"lint": "eslint . --ext .ts",
"deixar-codigo-bonito": "prettier --config .prettierrc --write fontes/**/*.ts",
"umd": "yarn browserify dist/index.js --s Delegua -o dist/umd/delegua.js",
"umd:rollup": "yarn rollup fontes/index.ts --config rollup.config.ts --configPlugin @rollup/plugin-typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DesignLiquido/delegua.git"
},
"keywords": [
"egua",
"pitugues",
"delegua",
"mapler",
"português",
"portugol",
"potigol"
],
"author": "Leonel Sanches da Silva",
"contributors": [
{
"name": "Leonel Sanches da Silva",
"url": "https://www.linkedin.com/in/leonelsanchesdasilva/"
},
{
"name": "Samuel Renan Gonçalves Vaz",
"url": "https://www.linkedin.com/in/samuel-renan-goncalves-vaz"
},
{
"name": "Alessandro Fuhr de Mello",
"url": "https://github.com/AlessandroFMello"
},
{
"name": "Italo Brito Brandão",
"url": "https://github.com/ItaloCobains"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DesignLiquido/delegua/issues"
},
"homepage": "https://github.com/DesignLiquido/delegua#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/esprima": "^4.0.3",
"@types/estree": "^1.0.0",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.14.194",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"antlr4": "^4.12.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"browserify": "^17.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^4.0.0",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"prettier": "^2.8.1",
"release-it": "^15.5.1",
"rimraf": "^3.0.2",
"rollup": "^4.17.2",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.22",
"typescript": "^5.6.3"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"browser-process-hrtime": "^1.0.0",
"esprima": "^4.0.1",
"lodash.clonedeep": "^4.5.0"
}
}