@tricoteuses/assemblee 3.2.10 → 3.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +38 -38
- package/README.md +153 -153
- package/lib/parsers.js +1326 -1323
- package/lib/registries.d.ts +8 -8
- package/lib/schemas/clean/acteurs_et_organes.d.ts +37 -37
- package/lib/schemas/clean/amendements.d.ts +12 -12
- package/lib/schemas/clean/debats.d.ts +26 -26
- package/lib/schemas/clean/dossiers_legislatifs.d.ts +16 -16
- package/lib/schemas/clean/questions.d.ts +122 -122
- package/lib/schemas/clean/scrutins.d.ts +2 -2
- package/lib/schemas/enriched/acteurs_et_organes.d.ts +2 -2
- package/lib/schemas/enriched/amendements.d.ts +9 -9
- package/lib/schemas/enriched/dossiers_legislatifs.d.ts +12 -12
- package/lib/schemas/enriched/questions.d.ts +108 -108
- package/lib/schemas/enriched/scrutins.d.ts +2 -2
- package/lib/schemas/raw/acteurs_et_organes.d.ts +132 -132
- package/lib/schemas/raw/agendas.d.ts +97 -97
- package/lib/schemas/raw/amendements.d.ts +83 -83
- package/lib/schemas/raw/debats.d.ts +51 -51
- package/lib/schemas/raw/dossiers_legislatifs.d.ts +171 -171
- package/lib/schemas/raw/questions.d.ts +222 -222
- package/lib/schemas/raw/scrutins.d.ts +164 -164
- package/package.json +134 -135
- package/lib/parsers/textes_lois.test.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,135 +1,134 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tricoteuses/assemblee",
|
|
3
|
-
"version": "3.2.
|
|
4
|
-
"description": "Retrieve, clean up & handle French Assemblée nationale's open data",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"Assemblée nationale",
|
|
7
|
-
"France",
|
|
8
|
-
"open data",
|
|
9
|
-
"Parliament"
|
|
10
|
-
],
|
|
11
|
-
"author": "Emmanuel Raviart <emmanuel@raviart.com>",
|
|
12
|
-
"contributors": [
|
|
13
|
-
"Henry Boisgibault <henry.boisgibault@proton.me>",
|
|
14
|
-
"Jérémie Corpinot <jerem.freelance@codingbox.fr>",
|
|
15
|
-
"Mathilde Couvreur <mathilde.couvreur@gmail.com>",
|
|
16
|
-
"Loïc Dachary <loic@dachary.org>",
|
|
17
|
-
"Pierre Drege <dregop@proton.me>",
|
|
18
|
-
"Nelson Herbin <nelson@herbin.info>",
|
|
19
|
-
"implicitdef",
|
|
20
|
-
"Hélène Jonin <helene.jonin@gmail.com>",
|
|
21
|
-
"Pauline Léon <paulineleon@tutanota.com>",
|
|
22
|
-
"Paul-Henry Ngounou <ngpaulhenry@gmail.com>"
|
|
23
|
-
],
|
|
24
|
-
"bugs": {
|
|
25
|
-
"url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee/issues"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://tricoteuses.fr/",
|
|
28
|
-
"license": "AGPL-3.0-or-later",
|
|
29
|
-
"repository": {
|
|
30
|
-
"type": "git",
|
|
31
|
-
"url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee.git"
|
|
32
|
-
},
|
|
33
|
-
"type": "module",
|
|
34
|
-
"engines": {
|
|
35
|
-
"node": ">=20.0.0"
|
|
36
|
-
},
|
|
37
|
-
"files": [
|
|
38
|
-
"lib"
|
|
39
|
-
],
|
|
40
|
-
"exports": {
|
|
41
|
-
".": {
|
|
42
|
-
"typedoc": "./src/index.ts",
|
|
43
|
-
"import": "./lib/index.js",
|
|
44
|
-
"types": "./lib/index.d.ts"
|
|
45
|
-
},
|
|
46
|
-
"./cleaners": {
|
|
47
|
-
"typedoc": "./src/cleaners/index.ts",
|
|
48
|
-
"import": "./lib/cleaners.js",
|
|
49
|
-
"types": "./lib/cleaners/index.d.ts"
|
|
50
|
-
},
|
|
51
|
-
"./git": {
|
|
52
|
-
"typedoc": "./src/git.ts",
|
|
53
|
-
"import": "./lib/git.js",
|
|
54
|
-
"types": "./lib/git.d.ts"
|
|
55
|
-
},
|
|
56
|
-
"./loaders": {
|
|
57
|
-
"typedoc": "./src/loaders.ts",
|
|
58
|
-
"import": "./lib/loaders.js",
|
|
59
|
-
"types": "./lib/loaders.d.ts"
|
|
60
|
-
},
|
|
61
|
-
"./parsers": {
|
|
62
|
-
"typedoc": "./src/parsers/index.ts",
|
|
63
|
-
"import": "./lib/parsers.js",
|
|
64
|
-
"types": "./lib/parsers/index.d.ts"
|
|
65
|
-
},
|
|
66
|
-
"./package.json": "./package.json"
|
|
67
|
-
},
|
|
68
|
-
"publishConfig": {
|
|
69
|
-
"access": "public"
|
|
70
|
-
},
|
|
71
|
-
"scripts": {
|
|
72
|
-
"build": "vite build && npm run prettier",
|
|
73
|
-
"clean": "rimraf lib",
|
|
74
|
-
"data:clean_data": "tsx src/scripts/clean_reorganized_data.ts --no-validate",
|
|
75
|
-
"data:download": "tsx src/scripts/data-download.ts",
|
|
76
|
-
"data:reorganize_data": "tsx src/scripts/reorganize_data.ts --no-validate-raw",
|
|
77
|
-
"data:retrieve_deputes_photos": "tsx src/scripts/retrieve_deputes_photos.ts --fetch",
|
|
78
|
-
"data:retrieve_documents": "tsx src/scripts/retrieve_documents.ts",
|
|
79
|
-
"data:retrieve_open_data": "tsx src/scripts/retrieve_open_data.ts --fetch",
|
|
80
|
-
"data:retrieve_pending_amendements": "tsx src/scripts/retrieve_pending_amendments.ts --incremental",
|
|
81
|
-
"data:retrieve_senateurs_photos": "tsx src/scripts/retrieve_senateurs_photos.ts --fetch",
|
|
82
|
-
"lint": "eslint .",
|
|
83
|
-
"prepare": "npm run build",
|
|
84
|
-
"prettier": "prettier --write \"src/**/*.ts\"",
|
|
85
|
-
"test": "vitest run",
|
|
86
|
-
"test:iter_load": "tsx src/scripts/test_iter_load.ts",
|
|
87
|
-
"type-check": "tsc --noEmit",
|
|
88
|
-
"type-check:watch": "npm run type-check -- --watch"
|
|
89
|
-
},
|
|
90
|
-
"dependencies": {
|
|
91
|
-
"cheerio": "^1.2.0",
|
|
92
|
-
"date-fns": "^4.
|
|
93
|
-
"deep-equal": "^2.2.3",
|
|
94
|
-
"deep-object-diff": "^1.1.9",
|
|
95
|
-
"fast-xml-parser": "^5.
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"node-
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"zod": "^
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"@
|
|
109
|
-
"@types/
|
|
110
|
-
"@types/
|
|
111
|
-
"@types/
|
|
112
|
-
"@types/
|
|
113
|
-
"@types/
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"typedoc": "^
|
|
125
|
-
"
|
|
126
|
-
"typescript": "^
|
|
127
|
-
"
|
|
128
|
-
"vite": "^
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@tricoteuses/assemblee",
|
|
3
|
+
"version": "3.2.12",
|
|
4
|
+
"description": "Retrieve, clean up & handle French Assemblée nationale's open data",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Assemblée nationale",
|
|
7
|
+
"France",
|
|
8
|
+
"open data",
|
|
9
|
+
"Parliament"
|
|
10
|
+
],
|
|
11
|
+
"author": "Emmanuel Raviart <emmanuel@raviart.com>",
|
|
12
|
+
"contributors": [
|
|
13
|
+
"Henry Boisgibault <henry.boisgibault@proton.me>",
|
|
14
|
+
"Jérémie Corpinot <jerem.freelance@codingbox.fr>",
|
|
15
|
+
"Mathilde Couvreur <mathilde.couvreur@gmail.com>",
|
|
16
|
+
"Loïc Dachary <loic@dachary.org>",
|
|
17
|
+
"Pierre Drege <dregop@proton.me>",
|
|
18
|
+
"Nelson Herbin <nelson@herbin.info>",
|
|
19
|
+
"implicitdef",
|
|
20
|
+
"Hélène Jonin <helene.jonin@gmail.com>",
|
|
21
|
+
"Pauline Léon <paulineleon@tutanota.com>",
|
|
22
|
+
"Paul-Henry Ngounou <ngpaulhenry@gmail.com>"
|
|
23
|
+
],
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://tricoteuses.fr/",
|
|
28
|
+
"license": "AGPL-3.0-or-later",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee.git"
|
|
32
|
+
},
|
|
33
|
+
"type": "module",
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=20.0.0"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"lib"
|
|
39
|
+
],
|
|
40
|
+
"exports": {
|
|
41
|
+
".": {
|
|
42
|
+
"typedoc": "./src/index.ts",
|
|
43
|
+
"import": "./lib/index.js",
|
|
44
|
+
"types": "./lib/index.d.ts"
|
|
45
|
+
},
|
|
46
|
+
"./cleaners": {
|
|
47
|
+
"typedoc": "./src/cleaners/index.ts",
|
|
48
|
+
"import": "./lib/cleaners.js",
|
|
49
|
+
"types": "./lib/cleaners/index.d.ts"
|
|
50
|
+
},
|
|
51
|
+
"./git": {
|
|
52
|
+
"typedoc": "./src/git.ts",
|
|
53
|
+
"import": "./lib/git.js",
|
|
54
|
+
"types": "./lib/git.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./loaders": {
|
|
57
|
+
"typedoc": "./src/loaders.ts",
|
|
58
|
+
"import": "./lib/loaders.js",
|
|
59
|
+
"types": "./lib/loaders.d.ts"
|
|
60
|
+
},
|
|
61
|
+
"./parsers": {
|
|
62
|
+
"typedoc": "./src/parsers/index.ts",
|
|
63
|
+
"import": "./lib/parsers.js",
|
|
64
|
+
"types": "./lib/parsers/index.d.ts"
|
|
65
|
+
},
|
|
66
|
+
"./package.json": "./package.json"
|
|
67
|
+
},
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public"
|
|
70
|
+
},
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "vite build && npm run prettier",
|
|
73
|
+
"clean": "rimraf lib",
|
|
74
|
+
"data:clean_data": "tsx src/scripts/clean_reorganized_data.ts --no-validate",
|
|
75
|
+
"data:download": "tsx src/scripts/data-download.ts",
|
|
76
|
+
"data:reorganize_data": "tsx src/scripts/reorganize_data.ts --no-validate-raw",
|
|
77
|
+
"data:retrieve_deputes_photos": "tsx src/scripts/retrieve_deputes_photos.ts --fetch",
|
|
78
|
+
"data:retrieve_documents": "tsx src/scripts/retrieve_documents.ts",
|
|
79
|
+
"data:retrieve_open_data": "tsx src/scripts/retrieve_open_data.ts --fetch",
|
|
80
|
+
"data:retrieve_pending_amendements": "tsx src/scripts/retrieve_pending_amendments.ts --incremental",
|
|
81
|
+
"data:retrieve_senateurs_photos": "tsx src/scripts/retrieve_senateurs_photos.ts --fetch",
|
|
82
|
+
"lint": "eslint .",
|
|
83
|
+
"prepare": "npm run build",
|
|
84
|
+
"prettier": "prettier --write \"src/**/*.ts\"",
|
|
85
|
+
"test": "vitest run",
|
|
86
|
+
"test:iter_load": "tsx src/scripts/test_iter_load.ts",
|
|
87
|
+
"type-check": "tsc --noEmit",
|
|
88
|
+
"type-check:watch": "npm run type-check -- --watch"
|
|
89
|
+
},
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"cheerio": "^1.2.0",
|
|
92
|
+
"date-fns": "^4.4.0",
|
|
93
|
+
"deep-equal": "^2.2.3",
|
|
94
|
+
"deep-object-diff": "^1.1.9",
|
|
95
|
+
"fast-xml-parser": "^5.9.3",
|
|
96
|
+
"fs-extra": "^11.3.5",
|
|
97
|
+
"glob": "^13.0.6",
|
|
98
|
+
"js-yaml": "^5.2.0",
|
|
99
|
+
"node-html-parser": "^8.0.3",
|
|
100
|
+
"node-stream-zip": "^1.15.0",
|
|
101
|
+
"p-limit": "^7.3.0",
|
|
102
|
+
"sharp": "^0.35.2",
|
|
103
|
+
"zod": "^4.4.3",
|
|
104
|
+
"zod-opts": "^1.0.0"
|
|
105
|
+
},
|
|
106
|
+
"devDependencies": {
|
|
107
|
+
"@eslint/js": "^10.0.1",
|
|
108
|
+
"@types/deep-equal": "^1.0.4",
|
|
109
|
+
"@types/fs-extra": "^11.0.4",
|
|
110
|
+
"@types/js-yaml": "^4.0.9",
|
|
111
|
+
"@types/node": "^26.0.1",
|
|
112
|
+
"@types/temp": "^0.9.4",
|
|
113
|
+
"@types/unzipper": "^0.10.11",
|
|
114
|
+
"ajv": "^8.20.0",
|
|
115
|
+
"eslint": "^10.6.0",
|
|
116
|
+
"globals": "^17.7.0",
|
|
117
|
+
"prettier": "^3.9.1",
|
|
118
|
+
"rimraf": "^6.1.3",
|
|
119
|
+
"temp": "^0.9.4",
|
|
120
|
+
"ts-json-schema-generator": "^2.9.0",
|
|
121
|
+
"tslib": "^2.8.1",
|
|
122
|
+
"tsx": "^4.22.4",
|
|
123
|
+
"typedoc": "^0.28.19",
|
|
124
|
+
"typedoc-plugin-markdown": "^4.12.0",
|
|
125
|
+
"typescript": "^6.0.3",
|
|
126
|
+
"typescript-eslint": "^8.62.0",
|
|
127
|
+
"vite": "^8.1.0",
|
|
128
|
+
"vite-plugin-dts": "^5.0.3",
|
|
129
|
+
"vitest": "^4.1.9"
|
|
130
|
+
},
|
|
131
|
+
"overrides": {
|
|
132
|
+
"@microsoft/api-extractor": "7.55.0"
|
|
133
|
+
}
|
|
134
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|