-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.49 KB
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
{
"name": "colissimo-pickup-point",
"version": "1.2.1",
"repository": "bqst/colissimo-pickup-point",
"description": "Get the list of pickup points for a given address using the Colissimo API",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"watch": "parcel watch",
"build": "parcel build",
"prepare": "npm run build"
},
"keywords": [
"colissimo",
"laposte"
],
"author": {
"name": "Bastien MONTOIS",
"email": "bastien.montois@gmail.com",
"url": "https://www.bqst.fr"
},
"license": "MIT",
"devDependencies": {
"@parcel/config-default": "^2.10.3",
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@parcel/validator-typescript": "^2.10.3",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"parcel": "^2.10.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.6.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/tests/**/*.test.(ts|js)"
],
"testEnvironment": "node"
}
}