-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 999 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": "elite-moodle-scraper",
"version": "1.1.0",
"description": "A modern and simple to use object orientated moodle scraper",
"main": "./src/index.js",
"scripts": {
"docs": "jsdoc ./src/index.js -c ./jsdoc.json -p ./package.json -d ./docs -r ./README.md",
"test": "jest --testEnvironment node "
},
"keywords": [
"moodle",
"scraper"
],
"repository": {
"type": "git",
"url": "https://github.com/XeliteXirish/EliteMoodleScraper.git"
},
"bugs": {
"url": "https://github.com/XeliteXirish/EliteMoodleScraper/issues"
},
"homepage": "https://xelitexirish.github.io/EliteMoodleScraper/",
"author": "Shaun O'Neill (XeliteXirish)",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.3.2",
"cheerio": "^1.0.0-rc.2",
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"express": "^4.16.3",
"jest": "^22.4.3",
"jsdoc": "^3.5.5",
"tui-jsdoc-template": "^1.2.2"
}
}