-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.47 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/lincones-js",
"description": "Biblioteca JavaScript/TypeScript que implementa estruturas básicas de interpretação de código LinConEs.",
"version": "0.0.0",
"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-gon%C3%A7alves-vaz-b6b83a103/"
}
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"empacotar": "yarn rimraf ./dist && tsc && yarn copyfiles -V ./README.md ./dist && yarn copyfiles -V ./LICENSE ./dist",
"formatacao-prettier": "prettier --config .prettierrc *.ts --write",
"publicar-npm": "npm publish --access public",
"lint": "eslint . --ext .ts",
"testes-unitarios": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"copyfiles": "^2.4.1",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"prettier": "^2.8.0"
}
}