-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 927 Bytes
/
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
{
"name": "anp-data-crawler",
"version": "1.0.0",
"description": "Data Crawler that get data from ANP (Natioinal Oil Association - Brazil)",
//"main": "index.js",
"scripts": {
"lint": "eslint src",
"build": "babel --optional runtime src -d dist",
"test": "mocha -c -b --timeout 10000 --check-leaks -R tap test.js --compilers js:babel-core/register"
},
"author": "Fabricio Gabriel Dupont",
"dependencies": {
"cheerio": "^0.22.0",
"express": "^4.15.2",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise": "^4.2.0"
},
"keywords": [
"anp",
"crawler",
"datacrawler",
"nodejs"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"mocha": "^3.0.0"
}
}