-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "@donatocardoso/busca-cli",
"description": "Ferramenta responsável por ler o conteúdo de arquivos e filtrá-los de acordo com um texto informado",
"homepage": "https://github.com/donatocardoso/busca-cli#readme",
"keywords": [
"search",
"busca",
"pesquisa",
"node"
],
"bin": {
"busca-cli": "index.js"
},
"author": "Donato Cardoso Avila",
"license": "MIT",
"version": "4.11.14",
"main": "index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donatocardoso/busca-cli.git"
},
"bugs": {
"url": "https://github.com/donatocardoso/busca-cli/issues"
},
"scripts": {
"pretest": "rm -fr ./coverage-temp ./example/data && mkdir ./example/data && npm link",
"test": "NODE_ENV=test jest --runInBand --detectOpenHandles",
"test:coverage": "NODE_ENV=test jest --coverage --runInBand --detectOpenHandles",
"posttest:coverage": "jest-coverage-badges --input ./coverage-temp/coverage-summary.json --output ./__tests__/badges",
"add:clear": "rm -fr ./node_modules package-lock.json yarn.lock"
},
"dependencies": {
"@sentry/node": "^6.3.5",
"chalk": "^4.1.1",
"commander": "^7.2.0",
"readline": "^1.3.0"
},
"devDependencies": {
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"prettier": "^2.2.1"
}
}