-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.39 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
48
49
50
51
52
53
{
"name": "@vikelabs/uvic-course-scraper",
"version": "0.2.2",
"description": "UVic Course Scrapper",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "github:vikelabs/uvic-course-scraper",
"scripts": {
"dump": "ts-node src/dev/cli.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"build": "tsc"
},
"author": "VikeLabs",
"license": "GPL-3.0",
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"dayjs": "^1.10.4",
"got": "^11.8.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/async": "^3.2.5",
"@types/cheerio": "^0.22.23",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/progress": "^2.0.3",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"app-root-path": "^3.0.0",
"async": "^3.2.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"glob": "^7.1.6",
"jest": "^26.6.3",
"jest-each": "^26.6.2",
"nock": "^13.0.7",
"prettier": "^2.2.1",
"progress": "^2.0.3",
"ts-jest": "^26.5.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3",
"yargs": "^16.2.0"
},
"files": [
"dist/**/*"
]
}