-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "soccer-go",
"version": "1.2.4",
"description": "Soccer CLI for stats and results.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acifani/soccer-go"
},
"author": {
"name": "Alessandro Cifani",
"email": "[email protected]",
"url": "https://github.com/acifani"
},
"keywords": [
"soccer",
"cli",
"sports",
"typescript"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"soccer-go": "lib/src/index.js",
"sgo": "lib/src/index.js"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\"",
"lint": "eslint --ignore-path .gitignore --ext .ts,.js ./src",
"prepublishOnly": "npm run format && npm run build",
"prebuild": "npm run clean",
"build": "tsc --pretty",
"pretest": "npm run lint",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"start": "ts-node --files src/index.ts"
},
"dependencies": {
"cfonts": "^3.2.0",
"cli-table3": "^0.5.1",
"commander": "^3.0.2",
"dayjs": "^1.11.7",
"enquirer": "^2.3.6",
"nanospinner": "^1.1.0",
"phin": "^3.7.0",
"picocolors": "^1.0.0",
"update-check": "^1.5.4"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@tsconfig/node10": "^1.0.9",
"@types/jest": "^29.5.1",
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=10.12.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}