forked from lagden/placa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@tadashi/placa",
"version": "1.0.0",
"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": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Thiago Lagden",
"email": "[email protected]",
"url": "http://lagden.in"
},
"repository": "lagden/placa",
"scripts": {
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "xo",
"test": "nyc ava --serial"
},
"engines": {
"node": ">=8.9.1"
},
"xo": {
"envs": [
"node"
],
"semicolon": false,
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
],
"capitalized-comments": 0
}
},
"ava": {
"timeout": "30s"
},
"main": "index.js",
"files": [
"lib",
"license",
"readme.md"
],
"dependencies": {
"got": "8.0.3",
"xml2js": "0.4.19"
},
"devDependencies": {
"ava": "0.25.0",
"coveralls": "3.0.0",
"nyc": "11.4.1",
"xo": "0.18.2"
}
}