-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 934 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
36
37
38
39
40
41
42
43
{
"name": "my-bus-leh-data",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "babel src -d lib --watch",
"start": "node ./lib/scraper.js",
"scrape": "babel src -d lib && node ./lib/scraper.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.9.1",
"elasticsearch": "^11.0.0",
"lodash": "^4.6.1",
"node-fetch": "^1.4.1",
"request": "^2.69.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13"
},
"private": true,
"babel": {
"presets": [
"es2015"
]
},
"description": "Component to get data for locations of bus in Singapore",
"repository": {
"type": "git",
"url": "git+https://github.com/zweicoder/my-bus-leh-data.git"
},
"keywords": [
"bus",
"transport",
"location",
"map",
"web",
"app"
]
}