-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 903 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
{
"name": "nutella-scrape",
"version": "1.1.1",
"description": "a nodeschool workshop to teach scraping",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/karissa/nutella-scrape.git"
},
"bin": "./index.js",
"keywords": [
"nodeschool",
"scraping",
"tutorial",
"school",
"exercise",
"help",
"scrape"
],
"author": "Karissa McKelvey <[email protected]> (http://karissamck.com/)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/karissa/nutella-scrape/issues"
},
"preferGlobal": true,
"homepage": "https://github.com/karissa/nutella-scrape",
"dependencies": {
"cheerio": "^0.19.0",
"format-data": "^2.1.2",
"got": "^4.1.1",
"workshopper": "^2.7.0",
"workshopper-exercise": "^2.4.0"
}
}