-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "br-cidades-estados-nodejs",
"description": "API para consultar todos os estados e cidades do Brasil",
"author": "Giovani Generali",
"version": "1.0.6",
"license": "MIT",
"homepage": "https://github.com/giovanigenerali/br-cidades-estados-nodejs",
"keywords": [
"brasil",
"cidades",
"estados"
],
"repository": {
"type": "git",
"url": "git+https://github.com/giovanigenerali/br-cidades-estados-nodejs.git"
},
"bugs": {
"url": "https://github.com/giovanigenerali/br-cidades-estados-nodejs/issues"
},
"main": "app.js",
"scripts": {
"start:dev": "nodemon app.js",
"start": "node app.js",
"test:dev": "nodemon --timeout 10000 --watch . --exec 'mocha ./test/index.js --exit || true'",
"test": "mocha --timeout 10000 --exit",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"json-server": "^0.14.0",
"snyk": "^1.241.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"should": "^13.2.3",
"supertest": "^3.3.0"
},
"snyk": true
}