-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "mairies",
"version": "0.0.0",
"description": "récupération des mails de chaque mairie de france",
"scripts": {
"test:acceptance": "mocha src/tests/acceptance/**/*.spec.ts",
"test:integration": "mocha src/tests/integration/**/*.spec.ts",
"test:all": "mocha src/tests/**/*.spec.ts",
"build": "tsc",
"start": "node ./dist/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"axios": "^0.21.1",
"chai": "^4.3.0",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"mocha": "^8.3.0",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.2"
},
"mocha": {
"reporter": [
"spec",
{
"reporterName": "xunit",
"reporterOptions": {
"output": "testspec.xunit.xml"
}
}
],
"require": [
"source-map-support/register",
"ts-node/register"
],
"full-trace": true
}
}