This repository was archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.32 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
{
"name": "@tadashi/placa",
"version": "1.4.1",
"description": "Consulta de placas de veículos na base de dados do SINESP Cidadão",
"keywords": [
"placa",
"busca",
"veiculo",
"SINESP",
"lib"
],
"bug": {
"url": "https://github.com/lagden/placa/issues",
"email": "lagden@gmail.com"
},
"license": "MIT",
"author": {
"name": "Thiago Lagden",
"email": "lagden@gmail.com",
"url": "https://github.com/lagden"
},
"contributors": [
{
"name": "Lucas Bernardo de Souza Santos",
"email": "sorackb@gmail.com",
"url": "https://github.com/Sorackb"
}
],
"repository": "lagden/placa",
"scripts": {
"report": "nyc report --reporter=text-lcov | coveralls",
"pretest": "xo",
"test": "ava"
},
"engines": {
"node": ">=8.9.1"
},
"main": "index.js",
"files": [
"lib",
"license",
"readme.md"
],
"dependencies": {
"got": "9.6.0",
"node-ip-location": "1.0.0",
"public-ip": "3.1.0",
"tunnel-agent": "0.6.0",
"xml2js": "0.4.19"
},
"devDependencies": {
"ava": "2.0.0",
"xo": "0.24.0"
},
"xo": {
"envs": [
"node"
],
"semicolon": false,
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
],
"capitalized-comments": 0
}
}
}