-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 2.91 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "sneakerdb-client",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A TypeScript client for interacting with The Sneaker Database API on RapidAPI.",
"keywords": [
"sneaker",
"sdk",
"client",
"rapidapi",
"The Sneaker Database API"
],
"author": {
"name": "Angel S. Moreno",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/angelxmoreno/sneakerdb-client",
"bugs": {
"url": "https://github.com/angelxmoreno/sneakerdb-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/angelxmoreno/sneakerdb-client.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"release": "release-it --only-version"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/jest": "^29.5.12",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7",
"axios-date-transformer": "^1.0.3",
"dotenv": "^16.4.1"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"**/dist/**"
],
"extends": [
"universe"
],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": [
"*.json"
],
"rules": {
"no-unused-expressions": "off"
}
}
],
"rules": {}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"semi": true,
"useTabs": false,
"tabWidth": 4,
"printWidth": 120
},
"lint-staged": {
"*.{ts,json}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"release-it": {
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
}
}
}