-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.94 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.94 KB
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
{
"name": "node-cpf-cli",
"version": "1.0.3",
"description": "Gerador e validador de CPF via linha de comando",
"main": "index.js",
"homepage": "https://github.com/leonardothibes/node-cpf-cli#readme",
"author": "Leonardo Thibes <leonardothibes@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leonardothibes/node-cpf-cli.git"
},
"bugs": {
"url": "https://github.com/leonardothibes/node-cpf-cli/issues"
},
"keywords": [
"cpf",
"validation",
"generation",
"console",
"terminal"
],
"bin": {
"cpf": "./bin/cpf"
},
"scripts": {
"lint": "jshint --config .jshintrc *.js ./lib/*.js",
"test": "mocha test --recursive --reporter dot",
"testdox": "clear ; istanbul cover _mocha test -- --recursive --reporter spec",
"coverage": "[ -d coverage ] || npm run testdox ; google-chrome coverage/lcov-report/index.html",
"clean": "rm -Rf node_modules coverage .vscode *.log test.js",
"postpublish": "git push origin master && git push --tags",
"help": "npm-help"
},
"scriptHelp": {
"install": {
"usage": "npm install",
"desc": "Instala as dependências externas"
},
"lint": {
"desc": "Roda o verificador de sintaxe"
},
"test": {
"desc": "Roda a suite de testes"
},
"testdox": {
"desc": "Roda a suite de testes com relatório"
},
"coverage": {
"desc": "Abre no Chrome o relatório de coverage"
},
"clean": {
"desc": "Remove as dependências externas"
},
"publish": {
"usage": "npm publish",
"desc": "Publica uma nova versão no repositório NPM"
},
"help": {
"desc": "Exibe esta mensagem de HELP"
}
},
"dependencies": {
"node-argv": "0.0.7",
"node-cpf": "^1.0.18"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"mocha": "^4.0.1",
"npm-script-help": "^1.0.0",
"unit.js": "^2.0.0"
}
}