-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1 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
{
"name": "boston-food-trucks-info",
"version": "1.0.0",
"description": "Simple library to scrape data from the boston food trucks website",
"main": "src/index.js",
"scripts": {
"test": "jest",
"refresh:test:data": "curl -o src/__test__/__data__/city-boston-food-trucks-schedule.html https://www.boston.gov/departments/small-business-development/city-boston-food-trucks-schedule"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kj800x/boston-food-trucks-info.git"
},
"keywords": [
"boston",
"food-trucks",
"food",
"json",
"scrape",
"web-scrape"
],
"author": "Kevin Johnson <kevin@coolkev.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kj800x/boston-food-trucks-info/issues"
},
"homepage": "https://github.com/kj800x/boston-food-trucks-info#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"jest": "^24.5.0"
}
}