-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 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
{
"name": "nightcrawler",
"version": "1.0.0",
"description": "A simple data crawler that tracks fuel information and princing of every gas station in Brazil. Get the data from ANP (National Oil Agency).",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development node_modules/.bin/nodemon index.js",
"production": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gas-tracker/nightcrawler.git"
},
"keywords": [
"anp",
"gas-tracker",
"nodejs"
],
"author": "Marcio Mansur <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gas-tracker/nightcrawler/issues"
},
"homepage": "https://github.com/gas-tracker/nightcrawler#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"body-parser": "^1.17.1",
"cheerio": "^0.22.0",
"config": "^1.25.1",
"express": "^4.15.2",
"lodash": "^4.17.4",
"nodemon": "^1.11.0",
"pg": "^6.1.5",
"request-promise": "^4.2.0",
"sequelize": "^3.30.4",
"tatooine": "0.0.25"
}
}