This repository has been archived by the owner on Jul 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.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
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
{
"name": "@redtech/datagouvfr",
"version": "0.0.0",
"description": "TypeScript data.gouv.fr Web API client for Node and browser",
"license": "EUPL-1.2-or-later",
"homepage": "https://github.com/redte-ch/data.gouv.fr",
"bugs": {
"url": "https://github.com/redte-ch/data.gouv.fr/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/redte-ch/data.gouv.fr.git"
},
"author": {
"name": "Mauko Quiroga-Alvarado",
"email": "public@mauko.me",
"url": "https://redte.ch"
},
"keywords": [
"data.gouv.fr",
"api",
"client",
"typescript",
"opendata"
],
"scripts": {
"build": "tsup",
"format": "prettier --ignore-unknown --write .",
"format:staged": "git-format-staged -f 'prettier --ignore-unknown --stdin --stdin-filepath \"{}\"' .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "commit-and-tag-version",
"setup": "husky install",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@jest/globals": "^29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node18": "^18.2.2",
"@types/geojson": "^7946.0.13",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"commit-and-tag-version": "^12.0.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"git-format-staged": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-simple-dot-reporter": "^1.0.5",
"jsonc-eslint-parser": "^2.4.0",
"lodash": "^4.17.21",
"msw": "^2.0.11",
"prettier": "^3.1.0",
"prettier-config-standard": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-json-schema-generator": "^1.5.0",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"dependencies": {
"ajv": "^8.12.0",
"axios": "^1.6.2",
"js-convert-case": "^4.2.0"
},
"engines": {
"node": ">= 18.0.0",
"npm": ">= 9.0.0"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"type": "module"
}