-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.7 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
{
"name": "@designliquido/potigol",
"description": "Dialeto de Potigol baseado em Delégua e TypeScript",
"version": "0.1.10",
"license": "MIT",
"bugs": {
"url": "https://github.com/DesignLiquido/potigol/issues"
},
"homepage": "https://github.com/DesignLiquido/potigol#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"empacotar": "yarn rimraf ./dist && tsc && yarn copyfiles -V ./README.md ./dist && yarn copyfiles -V ./LICENSE ./dist",
"gerar-documentacao-tecnica": "yarn typedoc --out docs index.ts",
"publicar-docs": "yarn gerar-documentacao-tecnica && copyfiles -V ./recursos/**/* ./docs && gh-pages -d docs",
"publicar-npm": "npm publish ./dist --access public",
"testes-unitarios": "yarn jest --coverage",
"testes-unitarios:insignias": "yarn jest-coverage-badges --output ./recursos/imagens",
"observar-testes-unitarios": "yarn jest --watchAll",
"observar-testes-unitarios-com-coverage": "yarn jest --coverage --watchAll",
"lint": "yarn eslint . --ext .ts",
"deixar-codigo-bonito": "yarn prettier --config .prettierrc --write fontes/**/*.ts"
},
"devDependencies": {
"@types/estree": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.3.3"
},
"dependencies": {
"@designliquido/delegua": "^0.37.0",
"lodash": "^4.17.21"
}
}