-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "loterias-caixa-scraper",
"version": "0.2.1",
"description": "A module that allows you to pick up data from the lottery of the Brazilian Caixa Econômica Federal",
"main": "index",
"scripts": {
"clean": "rimraf cli.* index.*",
"lint": "eslint src/**",
"build": "babel src -d ./ --source-maps",
"watch": "babel src -d ./ --source-maps --watch",
"prepare": "npm run clean && npm run lint && npm run build"
},
"preferGlobal": true,
"bin": {
"loterias-caixa": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luccasr73/loterias-caixa-scraper.git"
},
"keywords": [
"caixa",
"loterias",
"lottery",
"scraper"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/luccasr73/loterias-caixa-scraper/issues"
},
"homepage": "https://github.com/luccasr73/loterias-caixa-scraper#readme",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rimraf": "^3.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"commander": "^3.0.2",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}