-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
54
55
56
{
"name": "parse-picks",
"version": "1.0.0",
"description": "Parses webpage from 4nfl picks",
"main": "index.js",
"repository": {
"type": "Github",
"url": "git@github.com:bduff9/parse-picks.git"
},
"scripts": {
"coverage": "jest --collectCoverageFrom=src/**.ts --coverage src",
"lint": "eslint --fix \"**/*.ts\"",
"setup": "npx typesync && npm i && npm prune",
"start": "ts-node src/index.ts",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"watch": "jest --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "0.21.0",
"cheerio": "1.0.0-rc.3",
"cli-spinner": "0.2.10",
"ts-node": "9.0.0"
},
"devDependencies": {
"@types/cheerio": "0.22.22",
"@types/cli-spinner": "0.2.0",
"@types/eslint": "7.2.4",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"ajv": "6.12.6",
"coveralls": "3.1.0",
"eslint": "7.13.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettierx": "0.14.0",
"eslint-plugin-you-dont-need-momentjs": "1.6.0",
"jest": "26.6.3",
"jest-mock-console": "1.0.1",
"ts-jest": "26.4.4",
"typescript": "4.0.5"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)(spec|test).ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}