-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.25 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.25 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@mtucourses/scraper",
"version": "3.0.3",
"description": "a package to scrape various information from Michigan Tech",
"keywords": [
"scrape",
"faculty",
"courses",
"sections",
"mtu"
],
"main": "dist/index.js",
"types": "dts/index.d.ts",
"repository": "git@github.com:Michigan-Tech-Courses/scraper",
"author": "Max Isom <hi@maxisom.me>",
"license": "MIT",
"files": [
"dist",
"dts"
],
"scripts": {
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix",
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "nyc --reporter=lcov ava",
"clean": "rm -rf dist dts",
"build": "tsc",
"build:watch": "tsc --watch",
"document": "typedoc",
"preversion": "yarn document && git add docs",
"prepack": "yarn clean && yarn build",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"ava": "^3.14.0",
"eslint": "^7.16.0",
"eslint-config-xo": "^0.33.1",
"eslint-config-xo-typescript": "^0.37.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"testdouble": "^3.16.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.14",
"typedoc-plugin-markdown": "^3.4.0",
"typescript": "^4.1.3"
},
"eslintConfig": {
"extends": [
"xo",
"xo-typescript/space"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
"new-cap": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unused-vars-experimental": "error",
"@typescript-eslint/prefer-readonly-parameter-types": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint '{src,test}/**/*.ts' --fix"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"timeout": "2m"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"got": "^11.8.1",
"nock": "^13.0.5",
"p-limit": "^3.1.0",
"p-throttle": "^4.1.1"
}
}