This repository has been archived by the owner on Mar 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.52 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
{
"name": "parseliasse",
"version": "1.0.0",
"description": "Projet de module typescript pour exploitation des données distribuées par le système Eliasse de l'assemblée nationale",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc --reporter=text mocha -r ts-node/register src/**/*.spec.ts --exit"
},
"repository": {
"type": "git",
"url": "https://framagit.org/Asone/parseliasse.git"
},
"keywords": [
"Assemblée-nationale",
"assemblee",
"nationale",
"french",
"parlament",
"parlement",
"open-data",
"eliasse",
"amendements",
"amendments",
"France",
"bureau-ouvert"
],
"author": "Nelson Herbin <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/node": "^10.12.12",
"@types/node-fetch": "^2.1.4",
"node-fetch": "^2.3.0",
"rxjs": "^6.3.3",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nock": "^10.0.3",
"nyc": "^13.1.0",
"ts-node": "^7.0.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"files": [
"dist"
]
}