-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "egypt-banks-scraper",
"version": "1.0.10",
"license": "MIT",
"description": "Scrape exchange rates from Egypt banks",
"keywords": [
"egypt",
"bank",
"banks",
"exchange rates"
],
"author": "MMayla <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/MMayla/egypt-banks-scraper.git"
},
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "babel src -d dist",
"lint": "eslint src tests",
"lint:fix": "npm run lint -- --fix",
"test": "mocha tests --timeout 15000 --compilers js:babel-register",
"test:dev": "npm run test -- --watch",
"prepublish": "npm run clean & npm run build",
"start": "babel-node src/index.js"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"cheerio": "^0.22.0",
"request": "^2.79.0"
}
}