This repository has been archived by the owner on Nov 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
98 lines (98 loc) · 2.54 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nintendo-switch-eshop",
"version": "6.0.2",
"workspaces": [
"documentation/"
],
"description": "Unofficial API lib for Nintendo Switch eShop game listing and pricing information.",
"author": "lmmfranco",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"test": "jest",
"lint": "eslint src __tests__ documentation/src --ext mjs,js,ts,tsx --fix",
"build": "tsc -b src && gen-esm-wrapper dist/index.js dist/index.mjs",
"watch": "tsc -b src -w",
"clean": "tsc -b src --clean",
"sversion": "standard-version",
"update": "yarn upgrade-interactive",
"prepublishOnly": "yarn build",
"prepare": "husky install .github/husky"
},
"dependencies": {
"@sapphire/fetch": "^2.0.2",
"@types/country-data": "^0.0.2",
"country-data": "^0.0.31",
"fast-xml-parser": "^3.21.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@sapphire/eslint-config": "^4.0.1",
"@sapphire/prettier-config": "^1.2.3",
"@sapphire/ts-config": "^3.1.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"common-tags": "^1.8.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gen-esm-wrapper": "^1.1.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"lint-staged": "^11.2.4",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"replace": "^1.2.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"files": [
"dist/",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=10",
"npm": ">=6"
},
"keywords": [
"eshop",
"switch",
"nintendo",
"crawler",
"lib",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lmmfranco/nintendo-switch-eshop.git"
},
"bugs": {
"url": "https://github.com/lmmfranco/nintendo-switch-eshop/issues"
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@3.0.2"
}