-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.88 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
{
"name": "@olivierzal/ariston-api",
"version": "3.0.0",
"description": "Ariston API for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OlivierZal/ariston-api.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"ariston",
"api"
],
"author": "Olivier Zalmanski",
"license": "ISC",
"bugs": {
"url": "https://github.com/OlivierZal/ariston-api/issues"
},
"homepage": "https://github.com/OlivierZal/ariston-api#readme",
"prettier": {
"experimentalTernaries": true,
"semi": false,
"singleQuote": true
},
"scripts": {
"build": "tsc && tsc -p 'tsconfig.checkjs.json'",
"docs": "typedoc && markdownlint-cli2 README.md",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm run lint:fix && npm run format:fix",
"prepare": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/luxon": "^3.4.2",
"@types/node": "^22.0.0",
"@types/tough-cookie": "^4.0.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^48.8.3",
"markdownlint-cli2": "^0.15.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.5.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"axios": "^1.7.7",
"axios-cookiejar-support": "^5.0.3",
"luxon": "^3.5.0",
"source-map-support": "^0.5.21",
"tough-cookie": "^5.0.0"
}
}