-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "bomberos-cl-api",
"version": "0.0.1",
"description": "Listado de Cuerpos de Bomberos de Chile en json y csv",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint index.js",
"format": "prettier-standard index.js",
"pretest": "npm run lint -s && npm run format -s",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/lgaticaq/bomberos-cl-api.git"
},
"keywords": [
"bomberos",
"chile",
"json",
"csv"
],
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgaticaq/bomberos-cl-api/issues"
},
"homepage": "https://github.com/lgaticaq/bomberos-cl-api#readme",
"dependencies": {
"bluebird": "^3.5.0",
"cheerio": "^1.0.0-rc.1",
"got": "^8.0.0",
"node-geocoder": "^3.16.0"
},
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"prettier-standard": "8.0.1"
},
"eslintConfig": {
"extends": "standard",
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true,
"node": true
}
}
}